/* ==========================================================================
   PÁGINA: SOBRE NOSOTROS - BANNER HERO
   ========================================================================== */

.axben-about-hero {
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: 'Figtree', sans-serif;
    overflow: hidden;
}

.axben-about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- Columna Información (Izquierda) --- */
.about-hero-info {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-badge {
    background-color: #00b903;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400; 
    padding: 8px 24px;
    border-radius: 72px;
    margin-bottom: 30px;
    display: inline-block;
}

.about-title {
    font-size: 60px;
    font-weight: 600; 
    color: #111111;
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
}

.about-title .text-green {
    color: #00A803;
}

.about-description {
    font-size: 16px;
    font-weight: 400; 
    color: #555555;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Banner Inferior Verde Claro */
.about-feature-box {
    background-color: #def1de;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 18px;
    font-weight: 600; 
    color: #00A803; 
    line-height: 1.3;
    margin: 0;
}

/* --- Columna Imagen (Derecha) --- */
.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img-grouped {
    width: 100%;
    max-width: 646px; 
    height: auto;     
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE MÓVIL (Figma Match)
   ========================================================================== */
@media screen and (max-width: 991px) {
    .axben-about-hero {
        padding: 50px 20px;
    }

    .axben-about-hero-container {
        flex-direction: column; 
        gap: 40px;
    }

    .about-hero-image {
        order: -1; 
        width: 100%;
        justify-content: center;
    }

    .about-hero-info {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .about-badge {
        font-size: 18px;
        padding: 6px 20px;
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 42px; 
    }

    .about-feature-box {
        padding: 15px 20px;
    }

    .feature-text {
        font-size: 16px;
    }
}

/* ==========================================================================
   PÁGINA: SOBRE NOSOTROS - MISIÓN Y VISIÓN
   ========================================================================== */

.axben-mision-vision {
    /* Fondo Desktop */
    background-image: url('../../assets/images/bg-mision-vision-desktop.webp');
    background-size: cover;
    background-position: center;
    background-color: #00A803; /* Color de respaldo */
    height: 378px; /* Alto fijo en desktop según diseño */
    display: flex;
    align-items: center; /* Centra las tarjetas verticalmente */
    padding: 0 20px;
}

.mv-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.mv-card {
    /* 535px convertido a porcentaje flexible basado en el contenedor */
    width: calc(50% - 15px); 
    height: 250px; 
    border-radius: 24px;
    padding: 45px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Colores y estilos específicos por tarjeta */
.card-mision {
    background-color: #004e01;
    color: #ffffff;
}

.card-vision {
    background-color: #ffffff;
}

.card-vision .mv-title {
    color: #004e01; /* Verde oscuro para hacer contraste en fondo blanco */
}

.card-vision .mv-desc {
    color: #555555; /* Gris oscuro para legibilidad */
}

/* Tipografía */
.mv-title {
    font-family: 'Figtree', sans-serif;
    font-size: 40px;
    font-weight: 600; /* Semibold */
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.mv-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400; /* Regular */
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE MÓVIL (Figma Match Vertical)
   ========================================================================== */
@media screen and (max-width: 991px) {
    .axben-mision-vision {
        /* Cambio al fondo Móvil */
        background-image: url('../../assets/images/bg-mision-vision-mobile.webp');
        height: auto; /* Permite que el fondo crezca según el contenido */
        padding: 60px 20px;
    }

    .mv-container {
        flex-direction: column;
        gap: 20px;
    }

    .mv-card {
        width: 100%; /* Ocupa todo el ancho en móvil */
        height: auto; /* Altura dinámica basada en las líneas de texto */
        padding: 40px 30px;
    }

    /* Ajuste de tipografías para móvil */
    .mv-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .mv-desc {
        font-size: 15px;
    }
}