   @import url('general-sans.css');
   @import url('boska.css');
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Contenedor principal */
        .main-container {
            width: 100vw;
            min-height: 100vh;
            background: none;
            background-attachment: fixed;
            position: relative;
        }

        /* NAVBAR - Igual que las otras páginas */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(251,202,10,0.7);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0 20px;
            transition: all 0.3s ease;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links li a:hover {
            color: #555;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #666;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section - Mismo fondo que otras páginas */
        .page-hero {
            min-height: 500px;
            background: linear-gradient(135deg, #6c757d 0%, #343a40 100%);
            padding: 120px 0 100px;
            text-align: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .page-hero h1 {
            margin-top: 20px;
            font-family: 'Archivo', serif;
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-hero p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            opacity: 0.9;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Sección de imagen que se superpone */
        .image-overlay-section {
            position: relative;
            height: 200px;
            /* background: linear-gradient(to bottom, #343a40 0%, #343a40 50%, #ffffff 50%, #ffffff 100%); */
        }

        .company-image {
            position: absolute;
            top: 90%;
            left: 50%;
            transform: translate(-50%, -50%);
            width:1000px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            z-index: 100;
        
        }

        .company-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Placeholder para la imagen */
        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #fbca0a 0%, #f57f17 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        /* Sección principal de contenido */
        .about-content {
            background: white;
            padding: 150px 0 80px;
            margin-top: 120px;
        }

        .content-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .content-section h2 {
            font-family: 'Archivo', serif;
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 25px;
            position: relative;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #fbca0a;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .highlight-text {
            color: #fbca0a;
            font-weight: 600;
        }

        /* Sección de valores */
        .values-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .values-title {
            font-family: 'Archivo', serif;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 50px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-family: 'Archivo', serif;
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .value-card p {
            color: #666;
            line-height: 1.6;
        }

           /* Sección del equipo */
        .team-section {
            background: white;
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .team-member {
            background: #f8f9fa;
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .team-member.leadership {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            border: 2px solid #fbca0a;
        }

        .member-photo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .photo-placeholder {
            font-size: 2.5rem;
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h3 {
            font-family: 'GeneralSans-Regular', 'Merriweather', serif;
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .member-role {
            color: #fbca0a;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .member-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 15px;
            color: #fbca0a;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #555;
            color: #ccc;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(251,202,10,0.98);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .nav-links li a {
                font-size: 1.2rem;
            }

            .page-hero {
                min-height: 400px;
                padding: 120px 0 80px;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .company-image {
                width: 250px;
                height: 250px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 15px;
            }

            .about-content {
                padding: 130px 0 60px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .values-section {
                padding: 60px 0;
            }

               .team-section {
                padding: 60px 0;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                padding: 0 15px;
            }

            .team-member {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .company-image {
                width: 200px;
                height: 200px;
            }

            .content-section h2 {
                font-size: 1.8rem;
            }

            .values-title {
                font-size: 2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }