:root {
    /* Colores Primarios */
    --primary-blue: #0B1D3A;
    --primary-blue-dark: #1a1b4b;
    --primary-blue-darker: #0f1035;
    --primary-blue-light: #3B82F6;
    
    /* Colores Dorados/Amarillos */
    --primary-gold: #FAF4E5;
    --primary-orange: #EED9C4;
    
    /* Gradientes Principales */
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    --gradient-blue-dark: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue-darker) 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Colores de Texto */
    --text-primary: var(--primary-blue);
    --text-secondary: #64748b;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-lighter: rgba(255, 255, 255, 0.6);
    --text-white: white;
    
    /* Colores de Fondo */
    --bg-primary: var(--primary-blue);
    --bg-secondary: var(--primary-blue-dark);
    --bg-tertiary: var(--primary-blue-darker);
    --bg-light: #f8fafc;
    --bg-gray: #e2e8f0;
    --bg-white: white;
    
    /* Colores con Transparencia */
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-95: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(255, 255, 255, 0.2);
    --gold-transparent: rgba(255, 215, 0, 0.1);
    --gold-transparent-05: rgba(255, 215, 0, 0.05);
    --gold-transparent-03: rgba(255, 215, 0, 0.03);
    
    /* Sombras */
    --shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.3);
    --shadow-gold-hover: 0 6px 20px rgba(255, 215, 0, 0.4);
    --shadow-gold-strong: 0 8px 24px rgba(255, 215, 0, 0.3);
    --shadow-gold-stronger: 0 12px 32px rgba(255, 215, 0, 0.5);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-stronger: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Colores de Estado */
    --color-success: #10b981;
    --color-warning: var(--primary-orange);
    --color-error: #ef4444;
    --color-info: var(--primary-blue-light);
    
    /* Bordes */
    --border-gold: 2px solid rgba(255, 215, 0, 0.3);
    --border-transparent: 2px solid transparent;
    --border-glass: 1px solid var(--border-glass);
}
/* Reset y configuración base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        /* Barra de contacto superior */
        .top-bar {
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Header principal */
        .header {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        /* Logo */
        .logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
            text-decoration: none;
            line-height: 1;
        }

        .logo-sub {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            margin-top: -0.2rem;
        }

        /* Navegación */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-item a {
            color:var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-item a:hover {
            color: var( --primary-blue-light);
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var( --primary-blue-light);
            transition: width 0.3s ease;
        }

        .nav-item a:hover::after {
            width: 100%;
        }

        /* Botón de contacto */
        .contact-btn {
            background: var(--primary-blue);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: var( --primary-blue-light);
            transform: translateY(-2px);
        }

        /* Hero section */
        .hero-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            padding-right: 2rem;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
            margin: 1rem 0;
            border-radius: 2px;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
            color:var(--primary-blue);
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        /* Contenedor de medios */
        .media-container {
            position: relative;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Video circular que ocupa el círculo completo */
        .circle-video {
            position: absolute;
            right: -35vw;
            top: 50%;
            transform: translateY(-50%);
            width: 60vw;
            height: 60vw;
            border-radius: 50%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.9;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Overlay con gradiente para el texto */
        .video-overlay {
            position: absolute;
            right: -35vw;
            top: 50%;
            transform: translateY(-50%);
            width: 60vw;
            height: 60vw;
            border-radius: 50%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Contenido del texto sobre el video */
        .circle-content {
            color: white;
            text-align: center;
            max-width: 280px;
            z-index: 3;
        }

        /* Texto sobre el video */
        .video-caption {
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.4;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Elementos flotantes */


        /* Animaciones */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .top-bar {
                font-size: 0.75rem;
            }

            .contact-info {
                gap: 1rem;
                justify-content: center;
            }

            .contact-item {
                font-size: 0.7rem;
            }

            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
                order: 2;
                z-index: 10;
            }

            .media-container {
                order: 1;
                height: 400px;
            }

            .circle-video {
                right: -50vw;
                width: 100vw;
                height: 100vw;
            }

            .video-overlay {
                right: -50vw;
                width: 100vw;
                height: 100vw;
            }

            .circle-content {
                max-width: 250px;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo-sub {
                font-size: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .circle-video {
                right: -60vw;
                width: 120vw;
                height: 120vw;
            }

            .video-overlay {
                right: -60vw;
                width: 120vw;
                height: 120vw;
            }

            .circle-content {
                max-width: 200px;
            }
        }

/* Productos */
     /* Sección de productos */
        .products-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-title .underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contenedor del carousel */
        .products-carousel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 700px;
            margin: 4rem 0;
        }

        /* Contenedor de productos */
        .products-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            max-width: 1100px;
        }

        /* Producto individual */
        .product-item {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
            position: relative;
        }

        /* Producto pequeño */
        .product-item.small {
            width: 240px;
            height: 300px;
            opacity: 0.7;
            transform: scale(0.85);
        }

        .product-item.small:hover {
            opacity: 1;
            transform: scale(0.9);
        }

        /* Producto grande (activo) */
        .product-item.large {
            width: 480px;
            height: 600px;
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }

        /* Imagen del producto */
        .product-image {
            width: 100%;
            height: 60%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-item:hover .product-image {
            transform: scale(1.05);
        }

        /* Contenido del producto */
        .product-content {
            padding: 1.5rem;
            height: 40%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-item.small .product-content {
            padding: 1rem;
        }

        .product-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .product-item.small .product-title {
            font-size: 1.2rem;
        }

        .product-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .product-item.small .product-description {
            font-size: 0.85rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-category {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
            color: var(--primary-blue);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            align-self: flex-start;
        }

        .product-item.small .product-category {
            padding: 0.2rem 0.6rem;
            font-size: 0.7rem;
        }

        /* Botones de navegación */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
            color: var(--primary-blue);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            z-index: 20;
        }

        .nav-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .nav-button.prev {
            left: -80px;
        }

        .nav-button.next {
            right: -80px;
        }

        /* Indicadores */
        .indicators {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .products-container {
                flex-direction: column;
                gap: 1rem;
            }

            .product-item.large {
                width: 350px;
                height: 450px;
            }

            .product-item.small {
                width: 180px;
                height: 240px;
            }

            .nav-button {
                display: none;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .products-carousel {
                min-height: 550px;
            }
        }
/* Sección Qué Hacemos */
.what-we-do-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Header de la sección */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header .underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Descripción de la empresa */
.company-description {
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.description-icon {
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.description-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* Contenedor de Misión y Visión */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Cards de Misión y Visión */
.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
}

.vision-icon {
    background: linear-gradient(135deg, var( --primary-blue-light) 0%,var(--primary-blue) 100%);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color:var(--primary-blue);
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Decoraciones de las cards */
.card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.decoration-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

/* Decoraciones de fondo */
.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 50%;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: 8s;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 215, 0, 0.05) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 215, 0, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    animation: wave 20s linear infinite;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 0, 60px 30px, 90px -30px, 30px 0px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .company-description {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .description-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-shape {
        display: none;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .what-we-do-container {
        padding: 0 1rem;
    }

    .company-description {
        padding: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    /* background: linear-gradient(135deg, #1a1b4b 0%, #0f1035 100%); */
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%); 
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Footer principal */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 2rem 2rem;
}

/* Marca del footer */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-decoration: none;
    line-height: 1;
    display: block;
}

.footer-logo .logo-sub {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-decoration: none;
    margin-top: -0.3rem;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Redes sociales */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

/* Secciones de enlaces */
.footer-links,
.footer-products {
    padding-top: 0.5rem;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-products h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    border-radius: 1px;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-products li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-products a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before,
.footer-products a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--primary-gold);
    padding-left: 1.3rem;
}

.footer-links a:hover::before,
.footer-products a:hover::before {
    transform: translateX(3px);
}

/* Sección de contacto */
.footer-contact {
    padding-top: 0.5rem;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-top: 0.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Separador */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 2rem 2rem 0;
}

/* Footer inferior */
.footer-bottom {
    padding: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Decoraciones del footer */
.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    animation: floatFooter 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 7s;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%);
    background-size: 80px 80px;
    animation: waveFooter 25s linear infinite;
    opacity: 0.5;
}

/* Botón scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Animaciones */
@keyframes floatFooter {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes waveFooter {
    0% {
        background-position: 0 0, 0 40px;
    }
    100% {
        background-position: 80px 0, 80px 40px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }

    .decoration-shape {
        display: none;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2.5rem 1rem 1.5rem;
        gap: 2rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo .logo {
        font-size: 1.7rem;
    }

    .footer-logo .logo-sub {
        font-size: 1.1rem;
    }
}


/*  Contacto */
    :root {
      --primary-blue: #0B1D3A;
      --primary-blue-dark: #1a1b4b;
      --primary-blue-darker: #0f1035;
      --primary-blue-light: #3B82F6;
      --primary-gold: #FAF4E5;
      --primary-orange: #EED9C4;
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 4rem 1rem;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .contact-content {
      color: white;
    }

    .contact-title {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .contact-subtitle {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .contact-form-container {
      background: white;
      padding: 3rem;
      border-radius: 1rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--primary-blue);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e5e7eb;
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-blue-light);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 0.5rem;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      width: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }



    /* Responsive */
    @media (max-width: 768px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .contact-title {
        font-size: 2rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .nav-menu {
        display: none;
      }
    }
/* Botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 100px; /* Más margen del botón scroll */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    opacity: 1; /* Siempre visible */
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Animación de pulso para WhatsApp */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Tooltip para WhatsApp */
.whatsapp-button::after {
    content: 'Contáctanos por WhatsApp';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-button:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .whatsapp-button {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .whatsapp-button::after {
        display: none;
    }
}
