
        /* Paleta de colores basada en el logo H&L */
        :root {
            --primary: #1a3e72;   /* Azul oscuro principal */
            --primary-light: #2a4e82;
            --secondary: #d4af37; /* Dorado para acentos */
            --secondary-dark: #c19b2e;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --white: #ffffff;
            --black: #000000;
        }

        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

       
          .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            height: 90px;
            width: 100%;
            }
       
        .header-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
          
            z-index: 1001;
        }
                
        
        .logo {
            display: flex;
            align-items: center;
        }

        .logo-text {
            margin-left: 10px;
        }

        .logo-text h1 {
            font-size: 24px;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: -5px;
        }

        nav ul {
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            font-weight: 600;
            color: var(--dark);
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        nav ul li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }


            
                    /* Asegurar que otros elementos no se vean afectados */
            .logo,
            .social-icons,
            .mobile-menu-btn {
                position: relative;
                color: var(--white-color); /* Icono blanco */
                z-index: 2;
            }

        .mobile-menu-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    display: none;
}
        
        
        
        
         /* Estilos para el botón de menú hamburguesa */
/* Animación para el menú hamburguesa */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Estilos para el menú móvil en page-quienes-somos */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 90px;
        left: -100%;
        
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}  
        
        /* Hero */
        .hero {
            background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            color: var(--white);
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light);
        }

        .breadcrumb-container {
            display: flex;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--gray);
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb i {
            margin: 0 10px;
            color: var(--gray);
            font-size: 12px;
        }

        .breadcrumb span {
            color: var(--primary);
            font-weight: 600;
        }

        /* About */
        .about {
            padding: 80px 0;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .about-text p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Values */
        .values {
            background-color: var(--light);
            padding: 80px 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .value-icon i {
            font-size: 30px;
            color: var(--secondary);
        }

        .value-card h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--gray);
        }

        /* Team */
        .team {
            padding: 0px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-img {
            height: 300px;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .member-img img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .member-info p {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .member-social a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background-color: var(--secondary);
            color: var(--white);
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--primary);
            padding: 80px 0;
            color: var(--white);
        }

        .testimonial-slider {
            margin-top: 50px;
            position: relative;
        }

        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            margin: 0 15px;
            text-align: center;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 50px;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -20px;
            left: -10px;
        }

        .testimonial-text::after {
            bottom: -40px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 3px solid var(--secondary);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-info p {
            opacity: 0.8;
            font-size: 14px;
        }

       

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--secondary);
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-col p {
            opacity: 0.8;
            margin-bottom: 15px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-top: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
        }

        /* Swiper */
        .swiper-pagination-bullet {
            background-color: var(--white);
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--secondary);
            opacity: 1;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
      .containerelegirnos {
           
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .elegirnos {
            background: #1a2a6c;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        
        .h1elegirnos {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .subtitleelegirnos {
            font-size: 1.2rem;
            opacity: 0.9;
            margin: 10px;
            padding: 15px;
        }
        
        .featureselegirnos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 40px;
        }
        
        .featureelegirnos {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .featureelegirnos:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .icon {
            width: 80px;
            height: 80px;
            background: #1a2a6c;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .h2elegirnos {
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .pelegirnos {
            line-height: 1.6;
            color: #555;
        }
        
        .international .icon {
            background: linear-gradient(135deg, #1a2a6c, #004e92);
        }
        
        .integrity .icon {
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
        }
        
        .passion .icon {
            background: linear-gradient(135deg, #b21f1f, #fdbb2d);
        }
        
        .commitment .icon {
            background: linear-gradient(135deg, #396afc, #2948ff);
        }
        
        .sustainability .icon {
            background: linear-gradient(135deg, #00b09b, #96c93d);
        }   
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
             .mobile-menu-btn {
            display: flex;
            font-size: 28px;
            }    
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
               
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                padding: 30px;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                height: 60vh;
                margin-top: 70px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }

            
        }

        @media (max-width: 576px) {
            .hero {
                height: 70vh;
                text-align: center;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }

            .about-content {
                flex-direction: column-reverse;
            }
            
            .linea{
            display: none;
            }
            
              .timeline {
            position: absolute;
            display:none;
            }
        }
        
        
        
         /* Responsive design */
        @media (max-width: 768px) {
            .h1elegirnos {
                font-size: 2.2rem;
            }
            
            .featureselegirnos {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            .featureelegirnos {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .h1elegirnos {
                font-size: 1.8rem;
            }
            
            .elegirnos {
                padding: 30px 15px;
            }
            
            .icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
            
            .h2elegirnos {
                font-size: 1.5rem;
            }
        }
  