/* Custom Styles for Landing Page */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333;
    --bg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #000000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
}

.navbar-transparent .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-transparent .navbar-nav .nav-link:hover,
.navbar-transparent .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar-transparent .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Navbar con fondo cuando se hace scroll */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar - centrado de items */
.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav-spacer {
    min-width: 0;
}

.navbar-nav-center {
    flex-shrink: 0;
}

/* Navbar Buttons */
.navbar-buttons {
    margin-left: auto;
}

.btn-navbar {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-transparent .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.navbar-transparent .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    color: #ffffff;
}

/* Botón Equipos */
.btn-equipos {
    border: 2px solid #E38C0B;
    border-radius: 15px;
    color: #E38C0B;
    background-color: transparent;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(227, 140, 11, 0.3), 0 0 20px rgba(227, 140, 11, 0.15);
}

.btn-equipos:hover {
    background-color: #E38C0B;
    color: #000000;
    border-color: #E38C0B;
    box-shadow: 0 0 15px rgba(227, 140, 11, 0.5), 0 0 30px rgba(227, 140, 11, 0.3), 0 4px 10px rgba(227, 140, 11, 0.2);
}

/* Botón Contáctanos */
.btn-contactanos {
    border: 2px solid #E38C0B;
    border-radius: 15px;
    color: #000000;
    background-color: #E38C0B;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(227, 140, 11, 0.3), 0 0 20px rgba(227, 140, 11, 0.15);
}

.btn-contactanos:hover {
    background-color: #E38C0B;
    color: #000000;
    border-color: #E38C0B;
    box-shadow: 0 0 15px rgba(227, 140, 11, 0.5), 0 0 30px rgba(227, 140, 11, 0.3), 0 4px 10px rgba(227, 140, 11, 0.2);
}

.navbar-transparent .btn-primary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
}

.navbar-transparent .btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 1);
}

.navbar.scrolled .btn-equipos {
    border-color: #E38C0B;
    color: #E38C0B;
    background-color: transparent;
}

.navbar.scrolled .btn-equipos:hover {
    background-color: #E38C0B;
    color: #000000;
    border-color: #E38C0B;
}

.navbar.scrolled .btn-contactanos {
    border-color: #E38C0B;
    color: #000000;
    background-color: #E38C0B;
    box-shadow: 0 0 10px rgba(227, 140, 11, 0.3), 0 0 20px rgba(227, 140, 11, 0.15);
}

.navbar.scrolled .btn-contactanos:hover {
    background-color: #E38C0B;
    color: #000000;
    border-color: #E38C0B;
    box-shadow: 0 0 15px rgba(227, 140, 11, 0.5), 0 0 30px rgba(227, 140, 11, 0.3), 0 4px 10px rgba(227, 140, 11, 0.2);
}

.navbar.scrolled .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.navbar.scrolled .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        margin-top: 0.75rem;
        margin-left: calc(-0.5 * var(--bs-gutter-x, 12px));
        margin-right: calc(-0.5 * var(--bs-gutter-x, 12px));
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .navbar-nav-spacer:first-child {
        display: none !important;
    }
    
    .navbar-nav-spacer:last-child {
        flex-grow: 0;
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }
    
    .navbar-nav-center {
        width: 100%;
    }
    
    .navbar-nav-spacer .btn-navbar {
        width: 100%;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content .container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-content .row {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    width: 100%;
}

.hero-content .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.hero-section h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-black {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    .hero-title-black {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title-black {
        font-size: 2rem;
    }
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
    background-color: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,.15);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Services Section Background */
.servicios-section {
    background-color: #000000;
    background-image: repeating-linear-gradient(45deg, rgba(227, 140, 11, 0.15) 0px, rgba(227, 140, 11, 0.15) 1px, transparent 0px, transparent 50%);
    background-size: 20px 20px;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.servicios-section .container {
    position: relative;
    z-index: 1;
}

/* Services Header */
.servicios-header {
    margin-bottom: 4rem;
}

.servicios-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.servicios-title .text-orange {
    color: #E38C0B;
}

.servicios-title .text-white {
    color: #ffffff;
}

.servicios-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 140, 11, 0.3);
}

.service-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-card-img-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-card-img-static {
    opacity: 0;
}

.service-card:hover .service-card-video {
    opacity: 1;
}

.service-card-content {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.service-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #E38C0B;
    border-radius: 2px;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .servicios-title {
        font-size: 2.5rem;
    }
    
    .servicios-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card-image {
        height: 300px;
    }
}

/* Si la imagen es grande y quieres que cubra toda la pantalla sin repetir, usa esto: */
/*
.servicios-section {
    background-color: #000000;
    background-image: url('../img/backgrounds/pattern-diagonal-lines.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
*/

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Nosotros Section */
.nosotros-section {
    background-color: #000000;
    background-image: linear-gradient(90deg, rgba(242, 183, 5, 0.15) 1px, transparent 1px), linear-gradient(rgba(242, 183, 5, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.nosotros-header {
    margin-bottom: 2.5rem;
}

.nosotros-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.nosotros-main-title .text-orange {
    color: #E38C0B;
}

.nosotros-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Left Column */
.nosotros-left-column {
    padding-right: 2rem;
}

.nosotros-block {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    padding-left: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid #E38C0B;
    position: relative;
}

.nosotros-block-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #E38C0B;
    margin-bottom: 0.75rem;
}

.nosotros-block-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.text-highlight {
    color: #E38C0B;
    font-weight: 600;
}

/* Features Grid */
.nosotros-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nosotros-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nosotros-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(227, 140, 11, 0.1);
    border-radius: 50%;
}

.nosotros-feature-content {
    flex: 1;
}

.nosotros-feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.nosotros-feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Divider */
.nosotros-divider {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #E38C0B 20%, #E38C0B 80%, transparent 100%);
    margin: 0 auto;
}

/* Right Column */
.nosotros-right-column {
    padding-left: 2rem;
}

.nosotros-stat-card {
    background: linear-gradient(135deg, rgba(227, 140, 11, 0.25) 0%, rgba(184, 115, 51, 0.3) 50%, rgba(139, 69, 19, 0.25) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(227, 140, 11, 0.6);
    box-shadow: 0 0 20px rgba(227, 140, 11, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nosotros-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(227, 140, 11, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(227, 140, 11, 0.9);
}

.nosotros-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(227, 140, 11, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.nosotros-stat-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(227, 140, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.nosotros-stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #E38C0B;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(227, 140, 11, 0.6), 0 0 30px rgba(227, 140, 11, 0.3);
    position: relative;
    z-index: 1;
}

.nosotros-stat-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nosotros-stat-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.nosotros-stat-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(227, 140, 11, 0.5));
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .nosotros-divider {
        display: none;
    }
    
    .nosotros-left-column {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .nosotros-right-column {
        padding-left: 0;
    }
    
    .nosotros-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nosotros-main-title {
        font-size: 2rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.1rem;
    }
    
    .nosotros-stat-number {
        font-size: 3rem;
    }
}

/* Cotización Offcanvas */
.cotizacion-offcanvas.offcanvas-end {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    width: 600px !important;
    max-width: 90vw;
    box-shadow: none !important;
}

.cotizacion-offcanvas::before {
    display: none;
}

.cotizacion-offcanvas .offcanvas-header,
.cotizacion-offcanvas .offcanvas-body {
    position: relative;
    z-index: 2;
}

.cotizacion-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
    border-bottom: 1px solid rgba(227, 140, 11, 0.2);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cotizacion-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cotizacion-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(227, 140, 11, 0.1);
    border-radius: 8px;
}

.cotizacion-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.cotizacion-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cotizacion-body {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cotizacion-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.cotizacion-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(227, 140, 11, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cotizacion-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cotizacion-input:focus {
    outline: none;
    border-color: #E38C0B;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(227, 140, 11, 0.1);
}

.cotizacion-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.cotizacion-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.cotizacion-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E38C0B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-cotizacion {
    background-color: #E38C0B;
    color: #000000;
    border: none;
    padding: 0.875rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(227, 140, 11, 0.3);
}

.btn-cotizacion:hover {
    background-color: #d17a0a;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(227, 140, 11, 0.5);
    color: #000000;
}

.btn-cotizacion svg {
    flex-shrink: 0;
}

.cotizacion-security {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.cotizacion-security svg {
    flex-shrink: 0;
}

.cotizacion-phone {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(227, 140, 11, 0.2);
}

.cotizacion-phone p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cotizacion-phone-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #E38C0B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cotizacion-phone-link:hover {
    color: #d17a0a;
    transform: translateX(5px);
}

.cotizacion-phone-link svg {
    flex-shrink: 0;
}

.btn-close-white {
    filter: invert(1);
}

/* Clientes Section */
.clientes-section {
    background-color: #000000;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.clientes-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(227, 140, 11, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.clientes-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(227, 140, 11, 0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.clientes-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.clientes-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.clientes-title .text-orange {
    color: #E38C0B;
}

.clientes-title .text-white {
    color: #ffffff;
}

.clientes-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Carrusel de Clientes */
.clientes-carousel-wrapper {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.cliente-logo-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(227, 140, 11, 0.3);
    transition: all 0.3s ease;
}

.cliente-logo-card:hover {
    background-color: #ffffff;
    border-color: rgba(227, 140, 11, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 140, 11, 0.3);
}

.cliente-logo-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.cliente-logo-card:hover img {
    opacity: 1;
    filter: none;
}

/* Controles del carrusel personalizados */
.clientes-section .carousel-control-prev,
.clientes-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(227, 140, 11, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.clientes-section .carousel-control-prev {
    left: -25px;
}

.clientes-section .carousel-control-next {
    right: -25px;
}

.clientes-section .carousel-control-prev:hover,
.clientes-section .carousel-control-next:hover {
    background-color: rgba(227, 140, 11, 0.6);
    opacity: 1;
}

.clientes-section .carousel-control-prev-icon,
.clientes-section .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Banner CTA */
.clientes-banner {
    position: relative;
    z-index: 1;
    background-image: url('../img/clientes/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.clientes-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.clientes-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/clientes/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 0;
}

.clientes-banner {
    background-image: none;
}

.clientes-banner .container {
    position: relative;
    z-index: 2;
}

.clientes-banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.clientes-banner-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.clientes-banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

.btn-banner {
    background-color: rgba(0, 0, 0, 0.5);
    color: #E38C0B;
    border: 2px solid #E38C0B;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(227, 140, 11, 0.3), 0 0 30px rgba(227, 140, 11, 0.15);
}

.btn-banner:hover {
    background-color: rgba(227, 140, 11, 0.2);
    color: #E38C0B;
    border-color: #E38C0B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(227, 140, 11, 0.5), 0 0 40px rgba(227, 140, 11, 0.3), 0 5px 20px rgba(227, 140, 11, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .clientes-title {
        font-size: 2.5rem;
    }
    
    .clientes-section .carousel-control-prev {
        left: 10px;
    }
    
    .clientes-section .carousel-control-next {
        right: 10px;
    }
    
    .clientes-banner-title {
        font-size: 2rem;
    }
    
    .clientes-banner-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .clientes-title {
        font-size: 2rem;
    }
    
    .cliente-logo-card {
        height: 120px;
        padding: 1.5rem;
    }
    
    .clientes-banner {
        min-height: 250px;
        padding: 3rem 1.5rem;
    }
}

/* Footer */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 0;
    margin-top: 0;
}

.footer-top-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E38C0B 0%, rgba(227, 140, 11, 0.8) 100%);
}

.footer-right-stripe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #E38C0B 0%, rgba(227, 140, 11, 0.3) 100%);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid de vendedores - separadores alineados */
.footer-vendedores-grid {
    display: grid;
    grid-template-columns: min-content max-content min-content minmax(100px, max-content) min-content 1fr;
    gap: 0.35rem 0.6rem;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #ffffff;
}

.footer-vendedores-grid .footer-vendedor-icon {
    color: rgba(227, 140, 11, 0.9);
    font-size: 1rem;
}

.footer-vendedores-grid .footer-vendedor-col {
    white-space: nowrap;
}

.footer-vendedores-grid .footer-vendedor-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-vendedores-grid .footer-vendedor-email {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-icon {
    font-size: 1.2rem;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon-phone {
    color: #e91e63;
}

.footer-icon-email {
    color: #9c27b0;
}

.footer-icon-location {
    color: #e91e63;
}

.footer-icon-clock {
    color: #757575;
}

.footer-map-section {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
}

.footer-map-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.footer-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-map:hover {
    filter: grayscale(0%) brightness(1);
}

.footer-social-section {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-social-icon i.bi-facebook {
    color: #1877f2;
}

.footer-social-icon:hover i.bi-facebook {
    color: #1877f2;
}

.footer-social-icon i.bi-instagram {
    color: #e4405f;
}

.footer-social-icon:hover i.bi-instagram {
    color: #e4405f;
}

.footer-social-icon i.bi-linkedin {
    color: #0077b5;
}

.footer-social-icon:hover i.bi-linkedin {
    color: #0077b5;
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.footer-copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .footer-section .container {
        padding: 2rem 1rem;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-slogan {
        font-size: 0.85rem;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
    }
    
    .footer-contact-section {
        padding-right: 0;
    }
    
    .footer-map-section {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .footer-vendedores-grid {
        font-size: 0.78rem;
    }
    
    .footer-map-container {
        height: 180px;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Footer vendedores - cada vendedor en una sola línea */
.footer-vendedor-item {
    white-space: nowrap;
}

.footer-vendedor-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}

.footer-vendedor-link:hover {
    color: #E38C0B;
    border-bottom-color: #E38C0B;
}

/* Smooth Scroll - ya está definido arriba */

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}
