
        /* Header */
        .mobile-menu {
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-line {
            transition: all 0.3s ease-in-out;
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: #ffffff;
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Banner Nosotros */
        .nosotros-banner {
            height: 70vh;
            position: relative;
            overflow: hidden;
            background-color: var(--primary-color);
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(28, 47, 80, 0.7) 0%, rgba(28, 47, 80, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            text-align: center;
            color: var(--secondary-color);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner-quote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .banner-source {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* Sección Socios */
        .socios {
            padding: 20px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--primary-color);
        }

        /* Socio Fundador */
        .socio-fundador-container {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }

        /* Grid de socios */
        .socios-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        @media (min-width: 768px) {
            .socios-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .socios-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 480px) {
            .socios-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        /* Tarjetas de socios */
        .socio-card {
            background: var(--secondary-color);
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .socio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .socio-image {
            height: 330px;
            background-size: cover;
            background-position: 50% 25%;
            position: relative;
        }
        
        .socio-image.Aracely-Vasquez, .socio-image.Melanie-Espinoza, .socio-image.Katherine-De {

            background-position: 50% 100%;

        }

        .socio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .socio-card:hover .socio-overlay {
            opacity: 1;
        }

        .socio-contact-icons {
            display: flex;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .contact-icon:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: 1px solid #222;
        }

        .socio-content-card {
            padding: 20px;
        }

        .socio-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .socio-title {
            font-size: 0.9rem;
            color: var(--accent-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .socio-specialty {
            font-size: 0.85rem;
            color: #718096;
            margin-bottom: 15px;
        }

        /* Experiencia */
        .socio-experience {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--medium-gray);
        }

        .experience-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .experience-icon {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .experience-number {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .experience-label {
            font-size: 0.75rem;
            color: #718096;
            margin-top: 2px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--secondary-color);
            width: 90%;
            max-width: 800px;
            border-radius: 10px;
            padding: 30px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #718096;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        .modal-header {
            display: flex;
            margin-bottom: 30px;
            gap: 30px;
        }

        .modal-image {
            width: 150px;
            height: 300px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .modal-info {
            flex: 1;
        }

        .modal-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .modal-title {
            font-size: 1.1rem;
            color: var(--accent-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .modal-specialty {
            font-size: 1rem;
            color: #718096;
            margin-bottom: 15px;
        }

        .modal-contact-info {
            margin-bottom: 20px;
        }

        .modal-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .modal-contact-item i {
            width: 20px;
            color: var(--accent-color);
            margin-right: 10px;
        }

        .contact-link {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: var(--accent-color);
        }

        .modal-experience {
            display: flex;
            margin-top: 20px;
        }
        .experience-item {
            padding: 0;
        }

        .modal-experience .experience-item {
            flex: 1;
        }

        .modal-body {
            line-height: 1.6;
        }

        .modal-description p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .modal-description ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .modal-description li {
            margin-bottom: 5px;
        }

        .modal-contact-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .modal-header {
                flex-direction: column;
            }
            
            .modal-image {
                align-self: center;
            }

            .modal-experience {
                gap: 10px;
            }
        }

        