        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --silver: #F5F5F5;
            --gold: #FFD700;
            --deep-blue: #0A1628;
            --ocean-blue: #1E3A5F;
            --sky-blue: #4A90E2;
            --light-silver: #E8E8E8;
            --text-dark: #2C3E50;
            --gradient-silver: linear-gradient(135deg, #F5F5F5 0%, #D3D3D3 50%, #FFFFFF 100%);
            --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        }
        /* Marcar elemento activo del menú */
        .nav-links a.active {
            color: var(--sky-blue);
        }

        .nav-links a.active::before {
            width: 100%;
            left: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--silver);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-icon {
            width: 60px;
            height: 60px;
            border: 3px solid var(--light-silver);
            border-top: 3px solid var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Navigation */
        .nav-wrapper {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-wrapper.scrolled {
            background: white;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

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

        .logo-shape {
            width: 45px;
            height: 45px;
            background: var(--gradient-gold);
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--deep-blue);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--sky-blue);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -8px;
            left: 50%;
            background: var(--gradient-gold);
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before {
            width: 100%;
            left: 0;
        }

        .contact-btn {
            background: var(--gradient-gold);
            color: var(--deep-blue) !important;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600 !important;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
        }

        .contact-btn::before {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, var(--deep-blue) 35px, var(--deep-blue) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--ocean-blue) 35px, var(--ocean-blue) 70px);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: rgba(74, 144, 226, 0.1);
            color: var(--sky-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 900;
            color: var(--deep-blue);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 .highlight {
            /* background: var(--gradient-silver); */
            background: silver;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 2.5rem;
            opacity: 0.8;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--deep-blue);
            color: white;
            box-shadow: 0 10px 30px rgba(10, 22, 40, 0.2);
        }

        .btn-primary:hover {
            background: var(--ocean-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(10, 22, 40, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--deep-blue);
            border: 2px solid var(--deep-blue);
        }

        .btn-outline:hover {
            background: var(--deep-blue);
            color: white;
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .hero-stat {
            position: relative;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 500px;
            background: var(--gradient-silver);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-1 {
            top: 20%;
            left: -50px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            right: -50px;
            animation-delay: 1s;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-gold);
            border-radius: 10px;
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--deep-blue);
        }

        .card-label {
            font-size: 0.85rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--light-silver), transparent);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient-gold);
            color: var(--deep-blue);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .section-subtitle-90 {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.7;
            max-width: 800px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
            padding: 2.5rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-dark);
            line-height: 1.7;
            opacity: 0.8;
        }

        /* Operations Section */
        .operations {
            padding: 6rem 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
        }

        .operations-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .operation-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .operation-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .operation-image {
            /*height: auto;*/
            /*background: url('/assets/images/exploration_sangabriel_1.jpeg') center center no-repeat;
            background-size: cover;*/
            position: relative;
            overflow: hidden;
        }

        .operation-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-gold);
            color: var(--deep-blue);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .operation-content {
            padding: 2rem;
        }

        .operation-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .operation-location {
            color: var(--sky-blue);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .operation-description {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .operation-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--light-silver);
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 1.3rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .metric-label {
            font-size: 0.85rem;
            color: var(--text-dark);
            opacity: 0.7;
            text-transform: uppercase;
        }

        /* Timeline Section */
        .timeline {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 4rem auto 0;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--light-silver);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 2rem;
            background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
            border-radius: 15px;
            margin: 0 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: var(--gradient-gold);
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: var(--text-dark);
            opacity: 0.8;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .btn-cta {
            background: var(--gradient-gold);
            color: var(--deep-blue);
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }

        /* Footer */
        footer {
            background: var(--deep-blue);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .footer-column h4 {
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-size: 1.1rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gradient-gold);
            color: var(--deep-blue);
            transform: translateY(-3px);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--deep-blue);
            transition: all 0.3s ease;
        }

        /* Responsive */
                @media (max-width: 968px) {
                    .mobile-menu-toggle {
                        display: flex;
                    }
        
                    .nav-links {
                        position: fixed;
                        top: 70px;
                        left: -100%;
                        width: 100%;
                        height: calc(100vh - 70px);
                        background: white;
                        flex-direction: column;
                        padding: 0;
                        /* Quitar padding para mejor control */
                        gap: 0;
                        /* Quitar gap */
                        transition: left 0.3s ease;
                        align-items: center;
                        /* Centrar horizontalmente */
                        justify-content: flex-start;
                        /* Alinear desde arriba */
                        overflow-y: auto;
                    }
        
                    .nav-links.active {
                        left: 0;
                    }
        
                    /* Estilos para cada item del menú */
                    .nav-links li {
                        width: 100%;
                        text-align: center;
                        border-bottom: 1px solid #f0f0f0;
                    }
        
                    .nav-links a {
                        display: block;
                        padding: 1.5rem 2rem;
                        width: 100%;
                        font-size: 1.1rem;
                        text-align: center;
                    }
        
                    /* Quitar estilos del dropdown en móvil */
                    .dropdown-arrow {
                        display: none;
                    }
        
                    /* Hacer que el dropdown se comporte como items normales */
                    .dropdown-menu {
                        display: block !important;
                        position: static !important;
                        opacity: 1 !important;
                        visibility: visible !important;
                        transform: none !important;
                        box-shadow: none !important;
                        border-radius: 0 !important;
                        margin: 0 !important;
                        padding: 0 !important;
                        background: transparent !important;
                        min-width: 100% !important;
                    }
        
                    /* Estilo para los sub-items (opcional: con indentación o diferente color) */
                    .dropdown-menu li {
                        background: #f8f9fa;
                    }
        
                    .dropdown-menu a {
                        padding: 1.3rem 2rem;
                        font-size: 1rem;
                    }
        
                    /* Botón de contacto especial */
                    .contact-btn {
                        margin: 1.5rem auto;
                        display: inline-block;
                        background: var(--gradient-gold);
                        color: var(--deep-blue) !important;
                        padding: 1rem 2.5rem !important;
                        border-radius: 30px;
                        font-weight: 600 !important;
                        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
                        width: auto;
                        max-width: 200px;
                    }
        
                    /* Quitar el efecto hover del dropdown */
                   /* .dropdown:hover .dropdown-menu {
                        /* Ya no necesario, pero por si acaso */
                    /*}
        
                    /* Para el resto de elementos del diseño */
                    .hero-container {
                        grid-template-columns: 1fr;
                        text-align: center;
                    }
        
                    .hero-buttons {
                        justify-content: center;
                    }
        
                    .hero-stats {
                        justify-content: center;
                    }
        
                    .hero-visual {
                        display: block !important;
                        /* Cambié esto para que se vea */
                    }
        
                    .timeline-line {
                        left: 20px;
                    }
        
                    .timeline-item {
                        flex-direction: column;
                        padding-left: 50px;
                    }
        
                    .timeline-item:nth-child(even) {
                        flex-direction: column;
                    }
        
                    .timeline-dot {
                        left: 20px;
                    }
        
                    .footer-content {
                        grid-template-columns: 1fr;
                        text-align: center;
                    }
        
                    .footer-bottom {
                        flex-direction: column;
                        gap: 1rem;
                    }
                }
        
                /* Estilos del dropdown solo para desktop */
                @media (min-width: 969px) {
                    .dropdown {
                        position: relative;
                    }
        
                    .dropdown-toggle {
                        display: flex;
                        align-items: center;
                        gap: 0.3rem;
                    }
        
                    .dropdown-arrow {
                        font-size: 0.8rem;
                        transition: transform 0.3s ease;
                    }
        
                    .dropdown:hover .dropdown-arrow {
                        transform: rotate(180deg);
                    }
        
                    .dropdown-menu {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        background: white;
                        min-width: 180px;
                        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                        border-radius: 10px;
                        opacity: 0;
                        visibility: hidden;
                        transform: translateY(-10px);
                        transition: all 0.3s ease;
                        margin-top: 0.5rem;
                        padding: 0.5rem 0;
                        z-index: 1000;
                    }
        
                    .dropdown:hover .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0);
                    }
        
                    .dropdown-menu li {
                        list-style: none;
                    }
        
                    .dropdown-menu a {
                        display: block;
                        padding: 0.7rem 1.5rem;
                        color: var(--text-dark);
                        text-decoration: none;
                        transition: all 0.3s ease;
                        font-size: 0.95rem;
                    }
        
                    .dropdown-menu a:hover {
                        background: var(--light-silver);
                        color: var(--sky-blue);
                    }
        
                    .dropdown-menu a::before {
                        display: none;
                    }
                }
        
                /* Para móviles muy pequeños */
                @media (max-width: 480px) {
                    .nav-links a {
                        padding: 1.2rem 1.5rem;
                        font-size: 1rem;
                    }
        
                    .contact-btn {
                        padding: 0.8rem 2rem !important;
                        font-size: 0.95rem;
                    }
                }