/* About Us Page - Component CSS */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 2.5s cubic-bezier(.19, 1, .22, 1);
    transform: scale(1.08);
    filter: brightness(0.92) blur(0.5px);
}

.about-hero.visible .about-hero-bg img,
.about-hero:hover .about-hero-bg img {
    transform: scale(1.0);
    filter: brightness(1) blur(0px);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(44, 62, 80, 0.38) 0%, rgba(105, 140, 140, 0.28) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 60px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 4px 24px rgba(44, 62, 80, 0.28), 0 2px 8px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-family: var(--montserrat-font), Arial, sans-serif;
    background: rgba(105, 140, 140, 0.82);
    border-radius: 10px;
    display: inline-block;
    padding: 10px 32px 8px 32px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44, 62, 80, 0.28), 0 1px 4px rgba(0, 0, 0, 0.18);
    margin-bottom: 0;
    background: rgba(44, 62, 80, 0.18);
    border-radius: 8px;
    display: inline-block;
    padding: 8px 24px 8px 24px;
    box-shadow: 0 1px 8px rgba(44, 62, 80, 0.08);
    font-family: var(--poppins-font), Arial, sans-serif;
}

@media (max-width: 900px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-content {
        padding: 40px 10px 30px 10px;
    }
}

/* Optimizaciones móviles mejoradas */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 1.6rem !important; /* Forzar tamaño y evitar sobrescritura */
    }

    .about-hero-subtitle {
        font-size: 1.15rem !important; /* Forzar tamaño */
    }

    .about-hero-content {
        padding: 30px 15px 25px 15px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 38vh;
        max-height: 340px;
    }

    .about-hero-title {
        font-size: 1.6rem !important; /* Mantener 1.6rem para consistencia */
    }

    .about-hero-subtitle {
        font-size: 1.15rem !important; /* Mantener 1.15rem para legibilidad */
    }
}

.about-who-section {
    background: var(--light-gray, #F2F2F2);
    padding: 70px 0 60px 0;
    display: flex;
    justify-content: center;
}

.about-who-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    overflow: hidden;
}

.about-who-title-col {
    flex: 0 0 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
}

.about-who-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 0 0 18px;
    /* Quitar transición de hover */
}

.about-who-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-who-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
}

.about-who-text-col {
    flex: 1 1 0;
    padding: 48px 38px 38px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.about-who-paragraph {
    font-size: 1.15rem;
    color: var(--text-color, #40403F);
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 22px;
    text-align: justify;
    line-height: 1.7;
}

.about-who-paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .about-who-container {
        flex-direction: column;
        max-width: 98vw;
    }

    .about-who-title-col {
        flex: 0 0 auto;
        min-height: 250px;
        border-radius: 18px 18px 0 0;
    }

    .about-who-image {
        border-radius: 18px 18px 0 0;
    }

    .about-who-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .about-who-text-col {
        padding: 32px 24px 28px 24px;
    }
}

/* Optimizaciones móviles mejoradas para about-who */
@media (max-width: 768px) {
    .about-who-section {
        padding: 50px 0 40px 0;
    }

    .about-who-title-col {
        min-height: 220px;
    }

    .about-who-text-col {
        padding: 28px 20px 24px 20px;
    }

    .about-who-paragraph {
        font-size: 1.15rem; /* Mejorar legibilidad de párrafos */
        margin-bottom: 18px;
    }
}

@media (max-width: 600px) {
    .about-who-section {
        padding: 40px 0 30px 0;
    }

    .about-who-title-col {
        min-height: 200px;
    }

    .about-who-title {
        font-size: 1.6rem; /* Mejorar legibilidad del título */
    }

    .about-who-text-col {
        padding: 24px 15px 20px 15px;
    }

    .about-who-paragraph {
        font-size: 1.15rem; /* Mantener 1.15rem para legibilidad */
        margin-bottom: 15px;
    }
}

.about-block-section {
    width: 100vw;
    max-width: 100vw;
    background: var(--primary-color, #698C8C);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.about-mission-section.about-block-section,
.about-vision-section.about-block-section {
    background: none;
}

.about-block-bg {
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.about-block-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-block-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 18px;
    opacity: 0.92;
    filter: drop-shadow(0 2px 8px rgba(44, 62, 80, 0.12));
}

.about-block-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(44, 62, 80, 0.18);
}

.about-block-text {
    font-size: 1.15rem;
    color: #fff;
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 0;
    text-align: center;
    line-height: 1.6;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .about-block-inner {
        padding: 32px 18px 24px 18px;
    }

    .about-block-title {
        font-size: 1.6rem;
    }

    .about-block-text {
        font-size: 1rem;
    }
}

/* Optimizaciones móviles mejoradas para mission/vision */
@media (max-width: 768px) {
    .about-block-inner {
        padding: 28px 16px 22px 16px;
    }

    .about-block-title {
        font-size: 1.6rem !important; /* Forzar tamaño y evitar sobrescritura */
        margin-bottom: 15px;
    }

    .about-block-text {
        font-size: 1.15rem !important; /* Forzar tamaño */
        line-height: 1.5;
    }

    .about-block-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* Títulos adicionales de about-us para móvil */
    .about-values-title,
    .about-certifications-title,
    .about-team-title,
    .about-csr-title,
    .about-ods-title {
        font-size: 1.6rem !important; /* Consistencia en todos los títulos móviles */
    }

    .about-who-title {
        font-size: 1.6rem !important; /* Ya estaba definido pero agregar para claridad */
    }
}

@media (max-width: 600px) {
    .about-block-inner {
        padding: 24px 12px 18px 12px;
    }

    .about-block-title {
        font-size: 1.6rem !important; /* Mantener 1.6rem para consistencia */
        margin-bottom: 12px;
    }

    .about-block-text {
        font-size: 1.15rem !important; /* Mantener 1.15rem para legibilidad */
        line-height: 1.4;
    }

    .about-block-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    /* Mantener consistencia de títulos en breakpoint 600px */
    .about-values-title,
    .about-certifications-title,
    .about-team-title,
    .about-csr-title,
    .about-ods-title,
    .about-who-title {
        font-size: 1.6rem !important; /* Consistencia total en móviles pequeños */
    }
}

/* Estilos específicos para Misión y Visión */
.about-mission-section,
.about-vision-section {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    background: none;
}

.about-mission-section .about-block-bg,
.about-vision-section .about-block-bg {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.about-mission-section .about-block-bg {
    background: #79be70;
}

.about-vision-section .about-block-bg {
    background: #698C8C;
}

.about-mission-section .about-block-icon,
.about-vision-section .about-block-icon {
    display: none;
}

.about-values-section {
    background: #f8f7f2;
    width: 100vw;
    max-width: 100vw;
    padding: 70px 0 70px 0;
    display: flex;
    justify-content: center;
}

.about-values-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
}

.about-values-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.3rem;
    color: var(--primary-color, #698C8C);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-values-desc {
    font-size: 1.18rem;
    color: var(--text-color, #40403F);
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-values-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 0;
    flex-wrap: wrap;
}

.about-value-card {
    background: #79be70;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
    padding: 38px 24px 32px 24px;
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.about-value-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-value-icon {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 16px;
    opacity: 0.92;
    filter: drop-shadow(0 2px 8px rgba(44, 62, 80, 0.12));
}

.about-value-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
}

.about-value-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    text-align: center;
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
}

@media (max-width: 900px) {
    .about-values-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .about-value-card {
        max-width: 98vw;
        min-width: 0;
        padding: 28px 10px 22px 10px;
    }
}

.about-certifications-section {
    background: var(--primary-color, #698C8C);
    width: 100vw;
    max-width: 100vw;
    padding: 70px 0 70px 0;
    display: flex;
    justify-content: center;
}

.about-certifications-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
}

.about-certifications-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.1rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-certifications-desc {
    font-size: 1.12rem;
    color: #fff;
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 38px;
    text-align: center;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-certifications-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.about-certification-card {
    background: white;
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 0.25rem 1.5rem rgba(44, 198, 63, 0.08), 0 0.125rem 0.75rem rgba(44, 62, 80, 0.08);
    padding: 1.875rem; /* 30px */
    width: 100%;
    max-width: 280px;
    min-width: 160px;
    flex: 1 1 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-certification-card:hover {
    transform: translateY(-0.3125rem) scale(1.05); /* -5px + scale */
    box-shadow: 0 0.5rem 2rem rgba(44, 62, 80, 0.13);
}

.about-certification-img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.3s ease;
}

@media (max-width: 900px) {
    .about-certifications-grid {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-around;
    }

    .about-certification-card {
        max-width: 30%;
        min-width: 0;
        padding: 10px 5px;
    }

    .about-certification-img {
        max-height: 80px;
    }
}

.about-team-section {
    background: #f8f7f2;
    width: 100vw;
    max-width: 100vw;
    padding: 70px 0 70px 0;
    display: flex;
    justify-content: center;
}

.about-team-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
}

.about-team-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.3rem;
    color: var(--primary-color, #698C8C);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-team-desc {
    font-size: 1.18rem;
    color: var(--text-color, #40403F);
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 0;
}

.about-team-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
    padding: 32px 20px 28px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.about-team-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
}

.about-team-avatar img,
.about-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.about-team-avatar:hover img,
.about-team-avatar:hover .about-team-img {
    transform: scale(1.05);
}

.about-team-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color, #698C8C);
    font-family: 'Roboto', Arial, sans-serif;
}

.about-team-name-brand {
    color: var(--secondary-color, #8C7355);
}

.about-team-role {
    font-size: 1rem;
    color: var(--text-color, #40403F);
    margin-bottom: 12px;
    font-weight: 600; /* Aumentar de 500 a 600 para mayor presencia */
}

.about-team-text {
    font-size: 0.95rem;
    color: var(--text-color, #40403F);
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 1200px) {
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-team-card {
        padding: 24px 18px 20px 18px;
    }
}

.about-csr-section {
    background: var(--primary-color, #698C8C);
    width: 100vw;
    max-width: 100vw;
    padding: 70px 0 70px 0;
    display: flex;
    justify-content: center;
}

.about-csr-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
}

.about-csr-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.3rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-csr-desc {
    font-size: 1.18rem;
    color: #fff;
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-line;
}

.about-csr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 0;
}

.about-csr-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
    padding: 32px 20px 28px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.about-csr-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-csr-icon {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 16px;
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(44, 62, 80, 0.12));
}

.about-csr-card-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
}

.about-csr-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    text-align: center;
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    white-space: pre-line;
}

.about-ods-section {
    background: #f8f7f2;
    width: 100vw;
    max-width: 100vw;
    padding: 70px 0 70px 0;
    display: flex;
    justify-content: center;
}

.about-ods-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 18px;
}

.about-ods-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.3rem;
    color: var(--primary-color, #698C8C);
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.about-ods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 0;
}

.about-ods-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.06);
    min-height: 160px;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    background: #fcfcf7;
}

.ods-card-left {
    padding: 0 !important;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ods-card-img {
    width: 160px !important;
    height: 160px !important;
    min-width: 160px !important;
    min-height: 160px !important;
    max-width: 160px !important;
    max-height: 160px !important;
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
}

.ods-green-bg {
    background: linear-gradient(135deg, #4CAF50 70%, #388E3C 100%);
}

.ods-red-bg {
    background: linear-gradient(135deg, #E53935 70%, #B71C1C 100%);
}

.ods-burgundy-bg {
    background: linear-gradient(135deg, #A1244A 70%, #7B1836 100%);
}

.ods-mustard-bg {
    background: linear-gradient(135deg, #C89D2D 70%, #A67C00 100%);
}

.ods-card-number {
    font-family: 'Magnetik', sans-serif;
    font-size: 2.1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44, 62, 80, 0.18);
    margin-top: 8px;
    margin-bottom: 8px;
    z-index: 2;
}

.ods-card-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 24px 18px;
}

.ods-card-title {
    font-family: 'Magnetik', sans-serif;
    font-size: 1.15rem;
    color: var(--primary-color, #698C8C);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ods-card-text {
    font-size: 1rem;
    color: var(--text-color, #40403F);
    font-family: var(--body-text-font, 'Open Sans', Arial, sans-serif);
    line-height: 1.5;
    text-align: justify;
}

.ods-green {
    background: #4CAF50;
}

.ods-red {
    background: #E53935;
}

.ods-burgundy {
    background: #A1244A;
}

.ods-mustard {
    background: #C89D2D;
}

.ods-green .ods-card-number,
.ods-green .ods-card-img,
.ods-red .ods-card-number,
.ods-red .ods-card-img,
.ods-burgundy .ods-card-number,
.ods-burgundy .ods-card-img,
.ods-mustard .ods-card-number,
.ods-mustard .ods-card-img {
    color: #fff;
}

@media (max-width: 900px) {
    .about-csr-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-csr-card {
        padding: 24px 18px 20px 18px;
    }

    .about-ods-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 24px;
    }

    .about-ods-card {
        max-width: 98vw;
        flex-direction: row; /* Mantener lado a lado en móvil */
        align-items: stretch;
        min-height: 120px; /* Reducir altura mínima para móvil */
    }

    .ods-card-left {
        width: 100px; /* Reducir ancho de imagen para móvil */
        min-width: 100px;
        max-width: 100px;
        border-radius: 0; /* Sin border-radius para mejor ajuste */
        flex-direction: column; /* Mantener imagen vertical */
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 8px 0; /* Padding mínimo */
    }

    .ods-card-img {
        width: 100px !important; /* Ajustar tamaño de imagen */
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
    }

    .ods-card-content {
        flex: 1;
        padding: 16px 12px; /* Padding compacto para móvil */
    }

    .ods-card-text {
        font-size: 0.9rem; /* Texto más compacto para móvil */
        line-height: 1.4;
    }
}

h2:not(.about-hero-title) {
    font-family: 'Roboto', Arial, sans-serif;
}

/* Sistema modular funcionando - Editar componente → Build → Usar consolidado */ 