/* Quienes Somos Page Styles */
.quienes-somos-page {
    background-color: #000;
    min-height: 100vh;
}

/* Highlight colors */
.color-highlight {
    color: rgba(186, 255, 41, 1);
}

.color-highlight-orange {
    color: rgba(220, 150, 90, 1);
}
/* Hero Section - Fondo Negro */
.hero-plataforma-section {
    background-color: #000000;
    padding: 120px 0 80px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Label de sección */
.section-label {
    margin-bottom: 3rem;
}

.label-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 7%;
    color: rgba(186, 255, 41, 1);
    text-transform: uppercase;
}

/* Título principal */
.hero-title-container {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 74px;
    letter-spacing: -3%;
    color: #ffffff;
    margin: 0;
}

/* Descripción hero */
.hero-description {
    margin-top: 2rem;
}

.description-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.description-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    leading-trim: none;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
        line-height: 60px;
    }
    
    .description-text {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .hero-plataforma-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }
    
    .description-text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hero-plataforma-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .description-text {
        font-size: 20px;
    }
    
    .label-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
    }
    
    .description-text {
        font-size: 16px;
    }
}

/* Segunda Sección - Equipo */
.team-section {
    background-color: #000000;
    padding: 80px 0;
}

.team-member {
    margin-bottom: 120px;
    background: linear-gradient(180deg, #000000 0%, rgba(115, 115, 115, 0.12) 134.69%);
}

.team-member:last-child {
    margin-bottom: 0;
}

/* Contenido del miembro */
.team-content {
    padding: 0 2rem;
}

.team-content.text-right {
    text-align: right;
}

/* Rol del miembro */
.member-role {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Nombre del miembro */
.member-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 49px;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin: 0 0 0.5rem 0;
}

/* Posición del miembro */
.member-position {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(186, 255, 41, 1);
    margin-bottom: 1rem;
}

/* Enlace LinkedIn */
.member-linkedin {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 6%;
    text-transform: uppercase;
    color: rgba(186, 255, 41, 1);
    text-decoration: underline;
    text-decoration-color: rgba(186, 255, 41, 1);
    text-decoration-thickness: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.member-linkedin:hover {
    opacity: 0.8;
    color: rgba(186, 255, 41, 1);
}

/* Descripción del miembro */
.member-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

/* Imagen del miembro */
.team-image {
    text-align: center;
}

.member-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive Design para Team */
@media (max-width: 1199px) {
    .team-member {
        margin-bottom: 100px;
    }
    
    .member-name {
        font-size: 26px;
        line-height: 42px;
    }
    
    .team-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 991px) {
    .team-member {
        margin-bottom: 80px;
    }
    
    .team-content {
        padding: 2rem 0 0 0;
        text-align: left !important;
    }
    
    .member-name {
        font-size: 24px;
        line-height: 36px;
    }
    
    .member-description {
        font-size: 15px;
        line-height: 110%;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-member {
        margin-bottom: 60px;
    }
    
    .team-content {
        padding: 1.5rem 0 0 0;
    }
    
    .team-content:last-child {
        margin-bottom: 50px;
    }
    
    .member-name {
        font-size: 22px;
        line-height: 32px;
    }
    
    .member-role,
    .member-position {
        font-size: 14px;
    }
    
    .member-description {
        font-size: 14px;
        line-height: 120%;
    }
    
    .member-linkedin {
        font-size: 12px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .member-name {
        font-size: 20px;
        line-height: 28px;
    }
    
    .member-description {
        font-size: 13px;
    }
}
