:root {
    --primary-color: #1d477e;
    --secondary-color: #349ce6;
    --btn-color: #4b9ed9;
    --btn-hover-color: #3a8bc7;
    --footer-color: #11203f;
    --fuente-principal: "Poppins", sans-serif;
    --fuente-secundaria: "Open Sans", sans-serif;
    --fuente-numerica: "Manrope", sans-serif;
    --text-dark-teal: #213754;
    --card-title-color: #1d477e;
    --placeholder-bg: #d0dce8;

    /* ── Variables propias de los templates de página ── */
    --navy: rgb(17, 32, 63);
    --blue: rgb(29, 71, 126);
    --blue-dk: rgb(30, 58, 138);
    --accent: rgb(75, 158, 217);
    --teal: rgb(6, 50, 49);
    --purple: rgb(61, 45, 83);
    --mauve: rgb(166, 147, 184);
    --white: #ffffff;
    --bg: #f0f5fb;

    /* ── Tipografía ── */
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;

    /* ── Layout ── */
    --max-w: 1280px;
    --pad-x: 80px;
    --gap-sec: 72px;
}

/* ── Variables y utilidades ───────────────────── */
.sf-section {
    padding: 0 var(--pad-x, 80px);
}

.sf-inner {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
}

.sf-full {
    width: 100%;
}

.section-gap {
    height: var(--gap-sec, 72px);
}

.section-gap-sm {
    height: 40px;
}

/* ── 1. INTRO ─────────────────────────────────── */
.intro-header {
    padding-top: 48px;
}

.intro-header__titulo {
    font-family: var(--font-h);
    font-size: 40px;
    font-weight: 600;
    color: var(--blue, rgb(29, 71, 126));
    line-height: 1.25;
    margin-bottom: 12px;
}

.intro-header__subtitulo {
    font-size: 20px;
    font-weight: 400;
    color: var(--teal, rgb(6, 50, 49));
    line-height: 1.6;
}

.intro-imagen {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.intro-imagen img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.intro-imagen__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 35%, rgba(17, 32, 63, .88) 65%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.intro-imagen__texto {
    max-width: 480px;
    padding: 48px 56px 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-imagen__destacado {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.intro-imagen__cuerpo {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
}



/* ── 2. CONSULTORA ────────────────────────────── */
.consultora-titulo {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.consultora-texto {
    font-size: 18px;
    line-height: 1.75;
    color: var(--navy);
}

.consultora-texto strong {
    font-weight: 700;
}

/* ── 3. STATS — 5 cards separadas con fondo navy y radius 8 ── */
.stats-bar {
    background: transparent;
    padding: 0 var(--pad-x, 80px);
}

.stats-bar__inner {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    background: var(--navy, rgb(17, 32, 63));
    /* ← fondo por card, no en el wrapper */
    border-radius: 8px;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 4px;
    padding: 24px 24px 28px;
    min-height: 158px;
}

.stat-item__num {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.stat-item__label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

/* ── 4. RAZÓN DE SER — círculo rgb(163,50,136) + foto solapada ── */
.razon-block {
    overflow: hidden;
}

.razon-inner {
    display: flex;
    align-items: center;
    min-height: 534px;
}

.razon-circulo {
    width: 534px;
    height: 534px;
    flex-shrink: 0;
    background: rgb(163, 50, 136);
    /* magenta exacto de Figma */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 56px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.razon-circulo__titulo {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.razon-circulo__texto {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
}

.razon-foto {
    width: 534px;
    height: 534px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -160px;
    /* solape: la foto tapa 160px del círculo */
    position: relative;
    z-index: 1;
}

.razon-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── 5. SOMOS PARTE DE — fondo rgb(241,247,255) azul muy claro ── */
.somos-parte {
    background: #4B9ED9;
    /* azul muy claro, NO el accent fuerte */
    padding: 72px var(--pad-x, 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
}

.somos-parte__pretitulo {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.somos-parte__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-h);
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.05;
}

.somos-parte__logo img {
    max-width: 250px;
}

.somos-parte__texto {
    font-size: 17px;
    color: white;
    line-height: 1.65;
    max-width: 620px;
}

.btn-conoce-mas {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    font-family: var(--font-b);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s;
    color: black;
}

.btn-conoce-mas:hover {
    background: var(--navy);
    color: #fff;
}

/* ── 6. TALENTO — gradiente teal→azul rgb(2,117,146)→rgb(29,71,126) ── */
.consultor-block .consultor-inner {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
}

.consultor-block .consultor-foto {
    flex: 0 0 55%;
}

.consultor-block .consultor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultor-block .consultor-texto {
    flex: 1;
    background: linear-gradient(135deg, rgb(2, 117, 146) 0%, rgb(29, 71, 126) 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.consultor-block .consultor-texto__titulo {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.consultor-block .consultor-texto__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
}

/* ── 7. EQUIPO (composición + geo + expertise) ── */
.sec-title {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 600;
    color: var(--blue);
}

.equipo-block {
    padding: 0 var(--pad-x, 80px);
}

.equipo-inner {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sec, 72px);
}

.composicion-barra {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.composicion-barra__mujeres {
    background: var(--purple, rgb(61, 45, 83));
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 40px;
    justify-content: center;
}

.composicion-barra__hombres {
    flex: 1;
    background: var(--navy);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 40px;
    background-color: #1D477E;
    justify-content: center;
}

.composicion-barra__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.composicion-barra__pct {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.composicion-barra__label {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
}

.geo-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.geo-grid {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.geo-item {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.geo-item__mapa {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: contain;
}

.geo-item__pct {
    font-family: var(--font-h);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.geo-item__label {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
}

.expertise-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-inner {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.donut-wrap canvas {
    display: block;
}

.expertise-leyenda {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.leyenda-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.leyenda-item__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.leyenda-item__label {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

/* ── 8. ALIANZAS — fondo rgb(241,247,255) + logos estáticos ── */
.alianzas-block {
    background: rgb(241, 247, 255);
    /* azul muy claro, mismo que somos-parte */
    padding: 72px var(--pad-x, 80px);
}

.alianzas-header {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    text-align: center;
    margin-bottom: 48px;
}

.alianzas-header__titulo {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

.alianzas-header__titulo em {
    font-style: normal;
}

.alianzas-header__texto {
    font-size: 18px;
    color: var(--navy);
    line-height: 1.65;
    max-width: 1210px;
    margin: 0 auto;
}

/* Logos: fila estática, sin animación */
.logos-slider-wrap {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    overflow: visible;
}

.logos-slider-wrap::before,
.logos-slider-wrap::after {
    display: none;
}

.logos-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
    animation: none !important;
    transform: none !important;
}

.logos-track img[aria-hidden="true"] {
    display: none;
}

/* ocultar duplicados del loop */
.logos-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: filter .3s, opacity .3s;
}

.logos-track img:hover {
    filter: none;
    opacity: 1;
}

/* Slider fotos de eventos */
.fotos-slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fotos-track {
    display: flex;
    transition: transform .5s ease;
}

.fotos-slide {
    flex: 0 0 auto;
    height: 280px;
}

.fotos-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

.fotos-nav {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
}

.fotos-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 32, 63, .6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.fotos-btn:hover {
    background: rgba(17, 32, 63, .9);
}

.fotos-btn svg {
    width: 22px;
    height: 22px;
}

/* ── 9. MEMORIA ANUAL ────────────────────────── */
.memoria-block {
    background: linear-gradient(135deg, rgb(6, 50, 49) 0%, rgb(17, 32, 63) 60%, rgb(29, 71, 126) 100%);
    padding: 80px var(--pad-x, 80px);
    position: relative;
    overflow: hidden;
}

.memoria-block::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='90' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='65' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

.memoria-inner {
    max-width: var(--max-w, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.memoria-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.memoria-content__titulo {
    font-family: var(--font-h);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.memoria-content__subtitulo {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.memoria-content__texto {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
    max-width: 480px;
}

.btn-descarga {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-b);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    background: var(--accent);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
    transition: opacity .2s;
}

.btn-descarga:hover {
    opacity: .85;
}

.memoria-libro img {
    width: 280px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --pad-x: 40px !important;
    }

    .intro-header__titulo {
        font-size: 32px;
    }

    .intro-imagen img {
        height: 400px;
    }

    .stats-bar__inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 8px);
        min-height: 120px;
    }

    .stat-item__num {
        font-size: 36px;
    }

    .razon-circulo,
    .razon-foto {
        width: 420px;
        height: 420px;
    }

    .razon-foto {
        margin-left: -120px;
    }

    .razon-circulo {
        padding: 56px 40px;
    }

    .memoria-inner {
        gap: 40px;
    }

    .memoria-libro img {
        width: 220px;
    }

    .consultor-block .consultor-foto {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    :root {
        --pad-x: 20px !important;
    }

    .intro-header__titulo {
        font-size: 26px;
    }

    .intro-imagen img {
        height: 280px;
    }

    .intro-imagen__overlay {
        background: linear-gradient(to top, rgba(17, 32, 63, .9) 50%, transparent);
        align-items: flex-end;
        justify-content: flex-start;
    }

    .intro-imagen__texto {
        max-width: 100%;
        padding: 24px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 8px);
        min-height: 100px;
        padding: 18px 16px 20px;
    }

    .stat-item__num {
        font-size: 30px;
    }

    .stat-item__label {
        font-size: 14px;
    }

    .razon-inner {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .razon-circulo {
        width: 300px;
        height: 300px;
        padding: 40px 32px;
        margin-bottom: -40px;
        z-index: 1;
    }

    .razon-foto {
        width: 280px;
        height: 280px;
        margin-left: 0;
        z-index: 2;
    }

    .somos-parte {
        padding: 48px 20px;
    }

    .somos-parte__logo {
        font-size: 32px;
    }

    .somos-parte__pretitulo {
        font-size: 22px;
    }

    .consultor-block .consultor-inner {
        flex-direction: column;
        border-radius: 12px;
    }

    .consultor-block .consultor-foto {
        flex: 0 0 240px;
        min-height: 240px;
    }

    .consultor-block .consultor-texto {
        padding: 28px 24px;
    }

    .consultor-block .consultor-texto__titulo {
        font-size: 22px;
    }

    .composicion-barra {
        flex-direction: column;
        border-radius: 12px;
    }

    .composicion-barra__mujeres {
        flex: 0 0 auto !important;
        width: 100%;
    }

    .geo-item {
        flex: 1 1 100%;
    }

    .expertise-inner {
        flex-direction: column;
        gap: 24px;
    }

    .alianzas-block {
        padding: 48px 20px;
    }

    .logos-track {
        justify-content: center;
        gap: 32px;
    }

    .logos-track img {
        height: 32px;
    }

    .fotos-slide {
        height: 200px;
    }

    .memoria-inner {
        flex-direction: column;
    }

    .memoria-libro {
        display: none;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%;
    }
}

/* ── 4. RAZÓN DE SER ─────────────────────────────────────────── */
.razon-block {
    overflow: visible;
}

.razon-inner {
    display: flex;
    align-items: flex-start;
    /* los dos elementos arrancan desde arriba */
    justify-content: center;
    position: relative;
    min-height: 560px;
    overflow: visible;
}

/* Círculo magenta — queda en su posición natural (más arriba) */
.razon-circulo {
    width: 534px;
    height: 534px;
    flex-shrink: 0;
    background: rgb(163, 50, 136);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 56px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.razon-circulo__titulo {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.razon-circulo__texto {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
}

/* Foto circular — más abajo que el círculo y ENCIMA (z-index mayor) */
.razon-foto {
    width: 534px;
    height: 534px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -160px;
    /* solape horizontal con el círculo */
    margin-top: 250px;
    /* desplazada 60px hacia abajo */
    position: relative;
    z-index: 3;
    /* encima del círculo magenta */
}

.razon-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {

    .razon-circulo,
    .razon-foto {
        width: 420px;
        height: 420px;
    }

    .razon-circulo {
        padding: 56px 40px;
    }

    .razon-foto {
        margin-left: -120px;
        margin-top: 50px;
    }

    .razon-inner {
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .razon-inner {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding-bottom: 40px;
    }

    .razon-circulo {
        width: 300px;
        height: 300px;
        padding: 40px 32px;
        margin-top: 0;
        z-index: 1;
    }

    .razon-circulo__titulo {
        font-size: 22px;
    }

    .razon-foto {
        width: 260px;
        height: 260px;
        margin-left: 0;
        margin-top: 0px;
        z-index: 2;
    }
}


/* ── 9. MEMORIA ANUAL ─────────────────────────────────────── */
.memoria-block {
    width: 100%;
    /* Gradiente exacto de Figma: teal → azul, izquierda a derecha */
    background: linear-gradient(to bottom,
            rgb(2, 117, 146) 0%,
            rgb(29, 71, 126) 75%);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    max-height: 600px;
}

/* Ondas decorativas */
.memoria-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/wp-content/uploads/2026/03/patron-de-lineas-blanco.png) no-repeat right -38% bottom 10%;
    opacity: 0.15;
    pointer-events: none;
}


.memoria-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: 380px;
}

/* Texto — lado izquierdo */
.memoria-content {
    flex: 0 0 auto;
    max-width: 598px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.memoria-content__titulo {
    font-family: var(--font-h, 'Poppins', sans-serif);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.memoria-content__subtitulo {
    font-family: var(--font-h, 'Poppins', sans-serif);
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    line-height: 1.2;
}

.memoria-content__texto {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    max-width: 596px;
    text-align: center;
}

.btn-descarga {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-b, 'Open Sans', sans-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy, rgb(17, 32, 63));
    background: var(--accent, rgb(75, 158, 217));
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity .2s;
}

.btn-descarga:hover {
    opacity: .85;
}

/* Libro — lado derecho, grande, recto (sin rotación como en Figma) */
.memoria-libro {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 420px;
}

.memoria-libro img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
    /* Sin rotación — en Figma el libro está ligeramente en perspectiva
     pero sin rotate, la imagen ya tiene esa perspectiva integrada */
    transform: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .memoria-inner {
        padding: 56px 40px;
    }

    .memoria-content__titulo {
        font-size: 32px;
    }

    .memoria-content__subtitulo {
        font-size: 26px;
    }

    .memoria-libro {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .memoria-block {
        min-height: auto;
    }

    .memoria-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 40px 20px 48px;
    }

    .memoria-content {
        max-width: 100%;
    }

    .memoria-content__titulo {
        font-size: 28px;
    }

    .memoria-content__subtitulo {
        font-size: 22px;
    }

    .memoria-libro {
        align-self: center;
        width: 240px;
    }
}












.logos-slider-wrap {
    overflow: hidden !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: max-content !important;
}

.logos-track img {
    height: 40px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s, opacity 0.3s;
}

.logos-track img:hover {
    filter: none;
    opacity: 1;
}