/* ===== ABOUT PAGE - DISEÑO MINIMALISTA PREMIUM ===== */

/* Hero Section */
.about-banner {
    height: 768px;
    background: url('../img/equipo.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.about-hero-title strong {
    font-weight: 700;
}

.about-hero-btn {
    padding: 14px 35px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-hero-btn:hover {
    background: #ffffff;
    color: #592239;
}

.hero-animate {
    opacity: 0;
    animation: heroReveal 0.8s ease-out forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CARDS MODERNOS PARA NOSOTROS/MISIÓN/VISIÓN - FORMATO PIRAMIDAL ===== */
.nmv-cards-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 100px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nmv-cards-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nmv-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nmv-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #592239;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
}

.nmv-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, #e6756d, transparent);
}

/* ===== CONTENEDORES DE FILAS ===== */
.nmv-row-top {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.nmv-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ===== NUEVO DISEÑO CARDS UNIFICADO ===== */
.about-mission-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: 56px 1fr 104px;
    gap: 20px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
}

/* Primera card (Nosotros) */
.nmv-row-top .about-mission-card {
    width: 48%;
    min-width: 560px;
}

/* Cards de abajo (Misión/Visión) */
.nmv-row-bottom .about-mission-card {
    width: 100%;
}

/* Animaciones */
.nmv-cards-section.is-visible .about-mission-card[data-aos-delay="0"] {
    animation: slideInCard 0.6s ease forwards;
    animation-delay: 0.2s;
}

.nmv-cards-section.is-visible .about-mission-card[data-aos-delay="200"] {
    animation: slideInCard 0.6s ease forwards;
    animation-delay: 0.5s;
}

.nmv-cards-section.is-visible .about-mission-card[data-aos-delay="400"] {
    animation: slideInCard 0.6s ease forwards;
    animation-delay: 0.8s;
}

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

.about-mission-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Borde izquierdo solo para primera card */
.card-left-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #e6756d, #f08c84);
    transition: width 0.3s ease;
}

.about-mission-card:hover .card-left-border {
    width: 8px;
}

/* Icono circular */
.card-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e6756d, #f08c84);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 117, 109, 0.3);
    flex-shrink: 0;
}

.card-icon-circle img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.about-mission-card:hover .card-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(230, 117, 109, 0.5);
}

/* Contenido texto */
.card-text-content {
    flex: 1;
    min-width: 0;
}

.card-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #592239;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Imagen */
.card-photo-box {
    width: 104px;
    height: 104px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-mission-card:hover .card-photo-box img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .nmv-row-top .about-mission-card {
        width: 56%;
        min-width: 480px;
    }
}

@media (max-width: 991.98px) {
    .nmv-row-top,
    .nmv-row-bottom {
        display: block;
    }
    
    .nmv-row-top .about-mission-card,
    .nmv-row-bottom .about-mission-card {
        width: 100%;
        min-width: auto;
        margin: 0 auto 30px;
    }
    
    /* Mantener grid igual en tablet */
    .about-mission-card {
        grid-template-columns: 56px 1fr 104px;
        gap: 20px;
        padding: 28px;
    }
    
    .card-icon-circle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .card-photo-box {
        width: 104px;
        height: 104px;
    }
}

@media (max-width: 767.98px) {
    .about-mission-card {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 20px;
        text-align: center;
    }
    
    .card-icon-circle {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .card-heading {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .card-photo-box {
        width: 100%;
        height: 200px;
        margin: 10px auto 0;
    }
}


/* ================================================
   TEAM SECTION
   ================================================ */
.team-section {
    background: linear-gradient(135deg, #d8dce3 0%, #e8ecf1 50%, #d0d4db 100%);
    padding: 60px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats-bar-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(89, 34, 57, 0.15);
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #592239;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6756d, #f08c84);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 117, 109, 0.3);
}

.stat-icon i {
    font-size: 22px;
    color: #ffffff;
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e6756d;
    margin-bottom: 2px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.3;
}

/* Responsive Stats Bar */
@media (max-width: 991.98px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 35px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .stats-bar-wrapper {
        padding: 50px 25px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 25px;
    }
    
    .stat {
        gap: 12px;
        display: flex;
        opacity: 1;
        transform: translateY(0);
        justify-content: center;
        text-align: center;
        padding: 10px 0;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* ===== CONECTORES DE SECCIÓN ===== */
.section-connector {
    background: transparent;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    width: 100%;
    padding: 0 40px;
}

.connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #e6756d, transparent);
    opacity: 0.4;
}

.connector-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #592239;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
    position: relative;
}

@media (max-width: 767.98px) {
    .section-connector {
        padding: 40px 0;
    }
    
    .connector-content {
        gap: 20px;
        padding: 0 20px;
    }
    
    .connector-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .connector-line {
        display: none;
    }
}

/* ===== VALORES MODERNOS CON IMÁGENES ===== */
.valores-modern-section {
    background: #ffffff;
    padding: 30px 0 100px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.valores-modern-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.valores-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.valores-modern-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #592239;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.valores-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.valor-modern-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    cursor: pointer;
}

.valor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.6) 60%, 
        rgba(0, 0, 0, 0.85) 100%);
    transition: all 0.4s ease;
}

.valor-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    color: #ffffff;
}

.valor-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(230, 117, 109, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.valor-icon-small i {
    font-size: 18px;
    color: #ffffff;
}

.valor-modern-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.valor-modern-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.valor-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.valor-modern-card:hover .valor-overlay {
    background: linear-gradient(to bottom, 
        rgba(230, 117, 109, 0.2) 0%, 
        rgba(0, 0, 0, 0.7) 60%, 
        rgba(0, 0, 0, 0.9) 100%);
}

.valor-modern-card:hover .valor-icon-small {
    transform: scale(1.1) rotate(5deg);
    background: rgba(230, 117, 109, 1);
    box-shadow: 0 5px 15px rgba(230, 117, 109, 0.4);
}

.valor-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e6756d;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

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

/* ===== ABOUT & TEAM SECTIONS ===== */
.about-section, .team-section {
    padding: 80px 0;
}

.about-section {
    background: #ffffff;
}

.team-section {
    background: #f8f9fa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .nmv-tabs-nav {
        gap: 0;
    }
    
    .nmv-tab {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .valores-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .about-banner {
        height: 500px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .nmv-tabs-section {
        padding: 60px 0;
    }
    
    .nmv-tabs-container {
        padding: 0 20px;
    }
    
    .nmv-tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }
    
    .nmv-tab {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 12px 20px;
    }
    
    .nmv-tab.active {
        border-left-color: #592239;
        background: #f8f9fa;
    }
    
    .nmv-tab-inner h3 {
        font-size: 1.5rem;
    }
    
    .nmv-tab-inner p {
        font-size: 1rem;
    }
    
    .stats-bar-wrapper {
        padding: 60px 0;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .valores-modern-section {
        padding: 60px 0;
    }
    
    .valores-modern-container {
        padding: 0 20px;
    }
    
    .valores-modern-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .valores-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .valor-modern-card {
        min-height: 350px;
    }
    
    .valor-content {
        padding: 25px;
    }
    
    .valor-modern-name {
        font-size: 1.3rem;
    }
    
    .valor-modern-description {
        font-size: 0.9rem;
    }
    
    .about-section, .team-section {
        padding: 60px 0;
    }
}

@media (max-width: 991.98px) {
    .valores-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .valores-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .valor-modern-card {
        min-height: 320px;
    }
}

/* ===== PRESENCIA GLOBAL - MAPA ===== */
.global-presence-section {
    background: #0e2233 !important;
    background-image: none !important;
    padding: 60px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.global-presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(232, 236, 241, 0.08), transparent);
    pointer-events: none;
}

.global-presence-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.global-presence-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.global-presence-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.3;
}

.global-presence-content {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 80px;
    align-items: center;
}

.global-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.global-stats-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.global-stat-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="1"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.2s;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="2"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.4s;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="3"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.6s;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="4"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.8s;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="5"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 1s;
}

.global-presence-section.is-visible .global-stat-item[data-global-stat="6"] {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 1.2s;
}

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

.global-stat-number {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.global-stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.global-map-column {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-presence-section.is-visible .global-map-column {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.global-map-image {
    width: 110%;
    max-width: none;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .global-presence-content {
        gap: 60px;
    }
    
    .global-stats-wrapper {
        gap: 40px;
    }
    
    .global-stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 991.98px) {
    .global-presence-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Reordenar: imagen primero, stats después */
    .global-map-column {
        order: -1;
    }
    
    .global-stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .global-stats-column {
        gap: 20px;
    }
    
    .global-presence-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .global-stat-number {
        font-size: 1.8rem;
    }
    
    .global-stat-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .global-presence-section {
        padding: 50px 0;
    }
    
    .global-presence-container {
        padding: 0 20px;
    }
    
    .global-presence-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .global-presence-content {
        gap: 30px;
    }
    
    .global-stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .global-stats-column {
        gap: 18px;
    }
    
    .global-stat-number {
        font-size: 1.6rem;
    }
    
    .global-stat-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

@media (max-width: 575.98px) {
    .about-banner {
        height: 450px;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}


/* ===== TEAM SECTION ===== */
.team-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #f8f9fa 0%, transparent 100%);
    pointer-events: none;
}

.team-main-title {
    color: #142029;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6756d 0%, #d65d55 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(230, 117, 109, 0.2);
}

.team-photo-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #142029 0%, #1e3947 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-photo-wrapper::after {
    opacity: 1;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo {
    transform: scale(1.08);
}

.team-photo-placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 5rem;
    z-index: 1;
}

.team-info {
    padding: 24px 20px;
    text-align: center;
    background: white;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #142029;
    margin-bottom: 6px;
    line-height: 1.3;
}

.team-position {
    font-size: 0.85rem;
    color: #e6756d;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(230, 117, 109, 0.08);
    border-radius: 12px;
}

.team-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-photo-wrapper {
        height: 260px;
    }
    
    .team-info {
        padding: 22px 18px;
    }
}

@media (max-width: 767.98px) {
    .team-section {
        padding: 50px 0;
    }
    
    .team-photo-wrapper {
        height: 320px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-position {
        font-size: 0.8rem;
    }
    
    .team-description {
        font-size: 0.875rem;
    }
    
    .team-info {
        padding: 20px 16px;
    }
}
