/* #region PALETA DE COLOR */
/* ==========================================================
           VARIABLES
        ========================================================== */

:root {
    --blue: #2A4365;
    --blue-dark: #1E3049;
    --blue-light: #82A2C9;
    --blue-soft: #EAF0F7;
    --yellow: #EDB92D;

    --white: #ffffff;
    --off-white: #F7F9FC;
    --gray-100: #EEF2F7;
    --gray-300: #D6DEE8;
    --gray-600: #64748B;
    --text: #26364A;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 8px 25px rgba(42, 67, 101, .08);
    --shadow-md: 0 18px 45px rgba(42, 67, 101, .14);

    --container: 1180px;

    --transition: 250ms ease;
}

/* #endregion */

/* #region GLOBAL */
/* ==========================================================
           RESET
        ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* ==========================================================
           ACCESSIBILITY
        ========================================================== */

.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 9999;

    padding: .75rem 1rem;

    background: var(--yellow);
    color: var(--blue-dark);

    font-weight: 700;
    border-radius: 8px;

}

.skip-link:focus {
    top: 1rem;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}


/* ==========================================================
           GENERAL
        ========================================================== */

.container {
    width: min(calc(100% - 40px),
            var(--container));

    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: var(--blue-light);

    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 3px;

    background: var(--yellow);
    border-radius: 10px;
}

.section-title {
    max-width: 720px;

    margin: 0 0 20px;

    color: var(--blue);

    font-size: clamp(2rem,
            4vw,
            3.3rem);

    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-intro {
    max-width: 650px;

    margin: 0;

    color: var(--gray-600);

    font-size: 1.08rem;
}

/* #endregion */

/* #region BTNS*/
/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 0 22px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-weight: 750;
    text-decoration: none;

    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue-dark);

    box-shadow:
        0 8px 20px rgba(237, 185, 45, .25);
}

.btn-primary:hover {
    background: #F3C84D;
}

.btn-outline {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-dark {
    background: var(--blue);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue-dark);
}

/* #endregion */

/* #region HEADER */
/* ==========================================================
   HEADER / HEADER INNER
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(42, 67, 101, .08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header .header-inner {
    min-height: 58px;
    width: calc(100% - 80px);
    max-width: 1400px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==========================================================
   BRAND
   Logo + nombre + tagline
   ========================================================== */

.brand {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}


/* ==========================================================
   LOGO
   ========================================================== */

.custom-logo-floating {
    position: relative;
    z-index: 1001;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.custom-logo-floating img,
.custom-logo-floating .custom-logo {
    display: block;

    height: 64px !important;
    width: auto !important;

    max-width: none !important;

    object-fit: contain;

    margin-top: 4px;

    filter:
        drop-shadow(0 4px 10px rgba(0, 0, 0, .12));

    transition:
        transform var(--transition, .2s ease);
}


.custom-logo-floating img:hover,
.custom-logo-floating .custom-logo:hover {
    transform: scale(1.05);
}


/* ==========================================================
   LOGO TEXT
   ========================================================== */

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.1;
}


.logo-name,
.logo-sub {
    display: block;
}


.logo-name {
    font-size: 1.05rem;
    font-weight: 900;

    color: var(--blue);

    letter-spacing: -.03em;
}


.logo-sub {
    margin-top: 3px;

    color: var(--gray-600);

    font-size: .63rem;
    font-weight: 600;

    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    position: relative;
}


.main-nav a {
    position: relative;

    color: var(--blue);

    font-size: .92rem;
    font-weight: 650;

    text-decoration: none;
}


.main-nav a:not(.btn) {
    padding: 10px 0;
}


.main-nav a:not(.btn).active {
    color: var(--blue-dark);
}


/* ==========================================================
   INDICADOR AMARILLO
   ========================================================== */

.nav-indicator {
    position: fixed;

    height: 3px;

    background: var(--yellow);

    border-radius: 999px;

    left: 0;
    top: 0;

    width: 0;

    opacity: 0;

    box-shadow:
        0 2px 8px rgba(237, 185, 45, .25);

    transition:
        left .5s cubic-bezier(.22, 1, .36, 1),
        width .5s cubic-bezier(.22, 1, .36, 1),
        opacity .25s ease;

    pointer-events: none;

    z-index: 1002;
}


/* ==========================================================
   BOUTON — NOUS SOUTENIR
   ========================================================== */

.main-nav a.btn-dark {
    background-color: var(--blue);
    color: var(--white);

    padding: 10px 20px;

    border-radius: 999px;

    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}


.main-nav a.btn-dark:hover {
    background-color: var(--yellow);
    color: var(--blue-dark);
}


.main-nav a.btn-dark::after {
    display: none;
}


/* ==========================================================
   MOBILE MENU
   ========================================================== */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 10px;

    background: var(--gray-100);

    color: var(--blue);

    font-size: 1.4rem;
}

/* ==========================================================
   SCROOL
   ========================================================== */
section[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 600px) {
    .site-header .header-inner {
        width: calc(100% - 36px);
    }
}

/* #endregion */

/* #region HERO */
/* ==========================================================
   OBNL HERO — CLEAN & MODERN DESIGN
========================================================== */

.obnl-hero {
    position: relative;
    min-height: 760px;
    height: min(860px, 100vh);
    overflow: hidden;
    isolation: isolate;
    background: var(--blue-dark);
    color: var(--white);
}

/* --- BACKGROUND & SLIDES --- */
.obnl-hero__background {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.obnl-hero__slide {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.035);
    filter: saturate(.92) contrast(1.04);
    transition: opacity 1.4s cubic-bezier(.22, 1, .36, 1), transform 10s cubic-bezier(.22, 1, .36, 1);
}

.obnl-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) contrast(1.06);
}

.obnl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(18, 31, 48, .96) 0%,
            rgba(24, 40, 61, .88) 35%,
            rgba(42, 67, 101, .30) 75%,
            rgba(30, 48, 73, .10) 100%);
}

/* --- GRID LAYOUT --- */
.obnl-hero__container {
    position: relative;
    z-index: 5;
    height: 100%;
    min-height: 760px;
    width: calc(100% - 80px);
    max-width: 1400px;
    margin-inline: auto;

    display: grid;
    /* Reducimos la diferencia de proporción para juntar más los elementos */
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 350px);
    align-items: center;

    /* Disminuimos el espacio horizontal de 80px/90px a solo 36px */
    column-gap: 36px;

    padding-top: 90px;
    padding-bottom: 120px;
}

/* --- CONTENIDO TEXTO --- */
.obnl-hero__content {
    max-width: 850px;
}

.obnl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.obnl-hero__eyebrow-line {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--yellow);
}

.obnl-hero__title {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.03em;
}

.obnl-hero__title span {
    color: var(--yellow);
}

.obnl-hero__text {
    max-width: 580px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
}

.obnl-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* --- ASIDE / CARD GLASS --- */
.obnl-hero__aside {
    justify-self: start;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alineado a la izquierda del bloque aside */
    gap: 16px;
}

.obnl-hero__card {
    width: 100%;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transition: transform .3s ease, border-color .3s ease;
}

.obnl-hero__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .3);
}

.obnl-hero__card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.obnl-hero__card-title {
    display: block;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
}

.obnl-hero__card-accent {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 16px;
    border-radius: 99px;
    background: var(--yellow);
}

.obnl-hero__aside-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .75);
    font-size: .7rem;
    font-weight: 600;
}

.obnl-hero__aside-note-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
}

/* --- BARRA INFERIOR --- */
.obnl-hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.obnl-hero__location {
    display: flex;
    align-items: center;
    gap: 12px;
}

.obnl-hero__location-mark {
    width: 2px;
    height: 40px;
    background: var(--yellow);
}

.obnl-hero__location-label {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.obnl-hero__location strong {
    font-size: .9rem;
    font-weight: 700;
}

.obnl-hero__slider {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(18, 31, 48, .3);
    backdrop-filter: blur(8px);
}

.obnl-hero__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}

.obnl-hero__dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--yellow);
}

/* --- ONDA SVG --- */
.obnl-hero__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 80px;
    display: block;
    z-index: 8;
}

.obnl-hero__wave path {
    fill: var(--white);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .obnl-hero__container {
        grid-template-columns: 1fr;
        padding-top: 110px;
        padding-bottom: 150px;
    }

    .obnl-hero__aside {
        display: none;
        /* Simplifica la vista en tablets para mantener el foco en el CTA principal */
    }
}

@media (max-width: 600px) {
    .obnl-hero .obnl-hero__container {
        width: calc(100% - 36px);
    }

    .obnl-hero__title {
        font-size: clamp(2.3rem, 9vw, 3.2rem);
    }

    .obnl-hero__bottom {
        bottom: 50px;
    }
}

/* #endregion*/

/* #region 01 - QUI SOMMES-NOUS? */
/* ==========================================================
   01 — QUI SOMMES-NOUS ?
   Editorial / Human / Institutional
========================================================== */


/* ==========================================================
   SECTION
========================================================== */

.about-section {
    position: relative;

    padding: 150px 0 170px;

    overflow: hidden;

    background: var(--white);

    color: var(--blue-dark);
}


/* ==========================================================
   CONTAINER
========================================================== */

.about-section__container {
    position: relative;
}


/* ==========================================================
   HEADER
========================================================== */

.about-section__header {
    position: relative;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 65px;
}


.about-section__header .section-label {
    margin: 0;
}


/* ==========================================================
   SECTION NUMBER
========================================================== */

.about-section__number {
    position: absolute;

    top: -58px;
    right: -20px;

    color: rgba(42, 67, 101, .055);

    font-size: clamp(7rem, 13vw, 12rem);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -.08em;

    user-select: none;

    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.about-section__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(400px, .85fr);

    gap: clamp(70px, 9vw, 150px);

    align-items: center;
}


/* ==========================================================
   CONTENT
========================================================== */

.about-section__content {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


/* ==========================================================
   KICKER
========================================================== */

.about-section__kicker {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 0 0 20px;

    color: var(--blue);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;
}



/* ==========================================================
   TITLE
========================================================== */

.about-section__title {
    max-width: 700px;

    margin: 0 0 38px;

    color: var(--blue);

    font-size: clamp(2rem, 5vw, 4rem);

    font-weight: 800;

    line-height: .98;

    letter-spacing: -.055em;
}


.about-section__title span {
    display: block;

    color: var(--yellow);

    font-weight: 700;
}


/* ==========================================================
   BODY
========================================================== */

.about-section__body {
    max-width: 620px;

    padding-left: 25px;

    border-left: 2px solid rgba(237, 185, 45, .65);
}


.about-section__body p {
    margin: 0 0 20px;

    color: #536274;

    font-size: 1rem;

    line-height: 1.8;
}


.about-section__body p:last-child {
    margin-bottom: 0;
}


/* ----------------------------------------------------------
   Lead paragraph
---------------------------------------------------------- */

.about-section__lead {
    color: var(--blue-dark) !important;

    font-size: 1.18rem !important;

    font-weight: 600;

    line-height: 1.65 !important;
}


/* ==========================================================
   LINK
========================================================== */

.about-section__link {
    display: inline-flex;
    align-items: center;

    gap: 16px;

    margin-top: 38px;

    color: var(--blue-dark);

    font-size: .88rem;

    font-weight: 800;

    text-decoration: none;

    transition:
        color .25s ease,
        gap .25s ease;
}


.about-section__link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(42, 67, 101, .20);

    border-radius: 50%;

    font-size: 1.1rem;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}


.about-section__link:hover {
    color: var(--blue);

    gap: 20px;
}


.about-section__link:hover .about-section__link-arrow {
    background: var(--blue-dark);

    color: var(--white);

    transform: translateX(2px);
}


/* ==========================================================
   VISUAL
========================================================== */

.about-section__visual {
    position: relative;

    min-height: 560px;

    padding: 25px 0 0 25px;
}


/* ==========================================================
   IMAGE
========================================================== */

.about-section__image {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 4px;

    background:
        linear-gradient(145deg,
            rgba(42, 67, 101, .15),
            rgba(130, 162, 201, .25));

    /*
     * Placeholder visuel.
     *
     * À remplacer par une vraie photo de l'association
     * dès que le client fournit les images.
     */

    background-image:
        linear-gradient(145deg,
            rgba(42, 67, 101, .12),
            rgba(42, 67, 101, .30));

    background-size: cover;

    background-position: center;

    box-shadow:
        0 30px 70px rgba(42, 67, 101, .12);
}


/* ==========================================================
   IMAGE FRAME
========================================================== */

.about-section__visual::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(42, 67, 101, .12);

    pointer-events: none;

    z-index: 2;
}


/* ==========================================================
   DECORATIVE YELLOW CORNER
========================================================== */

.about-section__visual::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 95px;
    height: 95px;

    border-top: 3px solid var(--yellow);
    border-left: 3px solid var(--yellow);

    z-index: 3;

    pointer-events: none;
}


/* ==========================================================
   CAPTION
========================================================== */

.about-section__visual-caption {
    position: absolute;

    right: -25px;
    bottom: 10px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 17px 21px;

    background: var(--blue-dark);

    color: var(--white);

    box-shadow:
        0 18px 40px rgba(42, 67, 101, .20);
}


/* ==========================================================
   CAPTION LINE
========================================================== */

.about-section__visual-line {
    width: 3px;
    height: 42px;

    flex: 0 0 auto;

    background: var(--yellow);
}


/* ==========================================================
   CAPTION TEXT
========================================================== */

.about-section__visual-label {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, .55);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.about-section__visual-caption strong {
    display: block;

    color: var(--white);

    font-size: .92rem;

    font-weight: 700;
}


/* ==========================================================
   RESPONSIVE — LARGE TABLET
========================================================== */

@media (max-width: 1100px) {

    .about-section {
        padding: 120px 0 140px;
    }


    .about-section__grid {
        gap: 60px;
    }


    .about-section__title {
        font-size: clamp(2.8rem, 5vw, 4.3rem);
    }


    .about-section__visual {
        min-height: 500px;
    }


    .about-section__image {
        height: 470px;
    }
}


/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width: 900px) {

    .about-section {
        padding: 100px 0 120px;
    }


    .about-section__header {
        margin-bottom: 50px;
    }


    .about-section__number {
        top: -40px;
        right: 0;

        font-size: 8rem;
    }


    .about-section__grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .about-section__content {
        max-width: 700px;
    }


    .about-section__visual {
        width: min(100%, 650px);

        min-height: auto;

        margin-left: auto;
    }


    .about-section__image {
        height: 500px;
    }
}


/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 600px) {

    .about-section {
        padding: 85px 0 100px;
    }


    .about-section__header {
        margin-bottom: 40px;
    }


    .about-section__number {
        top: -27px;
        right: 0;

        font-size: 6rem;
    }


    .about-section__kicker {
        margin-bottom: 15px;

        font-size: .65rem;
    }


    .about-section__title {
        margin-bottom: 28px;

        font-size: clamp(2.5rem, 11vw, 3.5rem);

        line-height: 1;
    }


    .about-section__body {
        padding-left: 17px;
    }


    .about-section__lead {
        font-size: 1.05rem !important;
    }


    .about-section__body p {
        font-size: .94rem;

        line-height: 1.7;
    }


    .about-section__link {
        margin-top: 30px;
    }


    .about-section__visual {
        min-height: 390px;

        padding: 15px 0 0 15px;
    }


    .about-section__image {
        height: 370px;
    }


    .about-section__visual::after {
        width: 65px;
        height: 65px;

        border-width: 2px;
    }


    .about-section__visual-caption {
        right: -5px;
        bottom: 0;

        padding: 13px 16px;
    }


    .about-section__visual-label {
        font-size: .55rem;
    }


    .about-section__visual-caption strong {
        font-size: .82rem;
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .about-section__link,
    .about-section__link-arrow {
        transition: none;
    }
}


/* #endregion */

/* #region 02 - MISSION-VISION*/
/* =========================================================
   SECCIÓN MISSION • VISION • VALEURS
   ========================================================= */

/* Fondo que delimita la sección */
.values-section {
    padding: 85px 0;
    background-color: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

/* Header con estándar visual .section-label (Línea amarilla + Texto azul) */
.values-section__header {
    margin-bottom: 35px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-light, #82A2C9);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.values-section__title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.values-section__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--blue-dark);
    font-weight: 750;
}

.section-title span {
    color: var(--yellow);
}

/* ---------------------------------------------------------
   01. VISION & MISSION HORIZONTALES
   --------------------------------------------------------- */
.values-section__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

.values-section__pillar {
    padding: 26px 28px;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid rgba(42, 67, 101, 0.08);
    box-shadow: 0 4px 15px rgba(30, 48, 73, 0.03);
}

.values-section__pillar:nth-child(1) {
    background-color: var(--white);
    border-color: var(--yellow);
    /*rgba(42, 67, 101, 0.1);*/
}

.values-section__pillar:nth-child(2) {
    background-color: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.values-section__pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.values-section__pillar:nth-child(1) .values-section__pillar-badge {
    color: var(--blue);
}

.values-section__pillar:nth-child(2) .values-section__pillar-badge {
    color: var(--yellow);
}

.values-section__pillar-badge span {
    padding: 2px 7px;
    border-radius: 5px;
    background: var(--yellow);
    color: var(--blue-dark);
    font-weight: 800;
}

.values-section__pillar-content h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 750;
    line-height: 1.3;
}

.values-section__pillar:nth-child(1) h3 {
    color: var(--blue-dark);
}

.values-section__pillar:nth-child(2) h3 {
    color: var(--white);
}

.values-section__pillar-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.values-section__pillar:nth-child(1) p {
    color: var(--text);
}

.values-section__pillar:nth-child(2) p {
    color: var(--gray-300);
}


/* ---------------------------------------------------------
   02. VALORES (EXPANSIÓN INDIVIDUAL SOBREPUESTA / OVERLAY)
   --------------------------------------------------------- */
.values-section__values {
    padding-top: 25px;
    border-top: 1px solid var(--gray-300);
}

.values-section__values-intro {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
}

.values-section__values-subtitle {
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.values-section__hint {
    margin: 0;
    font-size: 0.82rem;
    color: var(--gray-600);
    font-style: italic;
}

.values-section__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* El contenedor mantiene el espacio fijo reservado para evitar brincos */
.values-section__item-wrapper {
    position: relative;
    height: 62px;
    /* Altura del estado replegado */
}

/* La tarjeta real se posiciona encima y crece sin empujar el resto */
.values-section__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 18px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-300);
    border-left: 4px solid var(--yellow);
    z-index: 1;
    cursor: default;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.values-section__item-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-section__item-num {
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
}

.values-section__item-title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.values-section__item-text {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text);
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.25s ease, margin-top 0.25s ease;
}

/* Hover: Se superpone a otros elementos mostrando el contenido completo */
.values-section__item-wrapper:hover {
    z-index: 10;
    /* Eleva la tarjeta sobre las adyacentes */
}

.values-section__item-wrapper:hover .values-section__item {
    box-shadow: 0 12px 28px rgba(30, 48, 73, 0.15);
    border-color: var(--blue-light);
    border-left-color: var(--blue);
}

.values-section__item-wrapper:hover .values-section__item-text {
    max-height: 180px;
    /* Expande la carta solo hacia abajo */
    opacity: 1;
    margin-top: 10px;
}


/* ---------------------------------------------------------
   03. ACCIONES Y RESPONSIVE
   --------------------------------------------------------- */
.values-section__action {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

@media (max-width: 991.98px) {
    .values-section__pillars {
        grid-template-columns: 1fr;
    }

    .values-section__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .values-section__list {
        grid-template-columns: 1fr;
    }

    /* En móviles la tarjeta se ajusta a la altura requerida directamente */
    .values-section__item-wrapper {
        height: auto;
    }

    .values-section__item {
        position: relative;
    }

    .values-section__item-text {
        max-height: none;
        opacity: 1;
        margin-top: 8px;
    }
}

/* #endregion */

/* #region 03 - BENEVOLAT */

/* =========================================================
   SECTION 03 — BÉNÉVOLAT
   Círculos perfectos + acentos + animación al hacer scroll
   ========================================================= */


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.benevolat-intro-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}


/* =========================================================
   CÍRCULOS DECORATIVOS DE FONDO
   ========================================================= */

.circle-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.circle-decor-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle,
            rgba(237, 185, 45, 0.15) 0%,
            rgba(255, 255, 255, 0) 70%);
    top: -80px;
    left: -100px;
}

.circle-decor-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(22, 38, 59, 0.06) 0%,
            rgba(255, 255, 255, 0) 70%);
    bottom: -120px;
    right: -120px;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.benevolat-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.benevolat-subtitle {
    font-size: 1.08rem;
    line-height: 1.6;
    color: #64748B;
    margin-top: 12px;
}


/* =========================================================
   GRID DE TARJETAS
   ========================================================= */

.benevolat-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benevolat-card-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
}


/* =========================================================
   SVG — TRAZO DE LOS CÍRCULOS
   ========================================================= */

.draw-ring-svg {
    position: absolute;
    top: 0;
    left: 0;

    width: 350px;
    height: 350px;

    z-index: 3;
    pointer-events: none;

    transform: rotate(-90deg);

    /* Oculto hasta que la sección entre al viewport */
    opacity: 0;
}

.ring-path {
    fill: none;

    stroke: var(--yellow, #EDB92D);
    stroke-width: 4;
    stroke-linecap: round;

    stroke-dasharray: 1080;
    stroke-dashoffset: 1080;
}


/* =========================================================
   ANIMACIÓN DE LOS CÍRCULOS
   IMPORTANTE:
   Las animaciones SOLO comienzan cuando la sección
   recibe la clase .is-visible
   ========================================================= */


/* ---------- CÍRCULO 01 ---------- */

.benevolat-intro-section.is-visible .svg-1 {
    animation: showSvg 0.01s ease 0.2s forwards;
}

.benevolat-intro-section.is-visible .ring-1 {
    animation:
        drawCircle 1.2s ease-in-out 0.2s forwards,
        fadeOutRing 0.3s ease 1.4s forwards;
}


/* ---------- CÍRCULO 02 ---------- */

.benevolat-intro-section.is-visible .svg-2 {
    animation: showSvg 0.01s ease 1.5s forwards;
}

.benevolat-intro-section.is-visible .ring-2 {
    animation:
        drawCircle 1.2s ease-in-out 1.5s forwards,
        fadeOutRing 0.3s ease 2.7s forwards;
}


/* ---------- CÍRCULO 03 ---------- */

.benevolat-intro-section.is-visible .svg-3 {
    animation: showSvg 0.01s ease 2.8s forwards;
}

.benevolat-intro-section.is-visible .ring-3 {
    animation:
        drawCircle 1.2s ease-in-out 2.8s forwards,
        fadeOutRing 0.3s ease 4s forwards;
}


/* =========================================================
   KEYFRAMES — CÍRCULOS
   ========================================================= */

@keyframes showSvg {
    to {
        opacity: 1;
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeOutRing {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


/* =========================================================
   TARJETAS CIRCULARES — ESTADO BASE
   ========================================================= */

.benevolat-card {
    background: #FFFFFF;

    width: 350px;
    height: 350px;

    padding: 45px 30px;

    border-radius: 50%;
    border: 1px solid #F1F5F9;

    box-shadow: 0 10px 30px rgba(22, 38, 59, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    text-align: center;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Estado inicial */
    opacity: 0;
}


/* =========================================================
   REVELACIÓN SECUENCIAL DE TARJETAS
   La animación comienza SOLO cuando .is-visible existe
   ========================================================= */

.benevolat-intro-section.is-visible .card-1 {
    animation: revealCard 0.4s ease 1.3s forwards;
}

.benevolat-intro-section.is-visible .card-2 {
    animation: revealCard 0.4s ease 2.6s forwards;
}

.benevolat-intro-section.is-visible .card-3 {
    animation: revealCard 0.4s ease 3.9s forwards;
}


/* =========================================================
   KEYFRAME — REVELACIÓN DE TARJETAS
   ========================================================= */

@keyframes revealCard {

    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   HOVER DE LAS TARJETAS
   ========================================================= */

.benevolat-card:hover {
    transform: translateY(-8px) !important;

    box-shadow: 0 20px 40px var(--blue);
}


/* =========================================================
   ACENTOS DE COLOR
   ========================================================= */


/* ---------- TARJETAS LATERALES 01 Y 03 ---------- */

.benevolat-card.card-side {
    border-bottom: 4px solid var(--blue-dark, #16263B);
}

.benevolat-card.card-side .benevolat-circle-icon {
    background-color: #F8FAFC;
    color: var(--blue-dark, #16263B);
}


/* ---------- TARJETA CENTRAL 02 ---------- */

.benevolat-card.card-accent {
    border-top: 4px solid var(--yellow, #EDB92D);
}

.benevolat-card.card-accent .benevolat-circle-icon {
    background-color: #FEF8E8;
    color: var(--yellow, #EDB92D);
}


/* =========================================================
   ICONOS
   ========================================================= */

.benevolat-circle-icon {
    position: relative;

    width: 72px;
    height: 72px;

    margin: 0 auto 18px auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   NÚMERO DE CADA CÍRCULO
   ========================================================= */

.circle-num {
    position: absolute;

    top: -2px;
    right: -2px;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background-color: var(--yellow, #EDB92D);
    color: #FFFFFF;

    font-size: 0.72rem;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 6px rgba(237, 185, 45, 0.4);
}


/* =========================================================
   HOVER — ICONOS
   ========================================================= */

.benevolat-card:hover .benevolat-circle-icon {
    background-color: var(--blue-dark, #16263B);
    color: #FFFFFF;

    transform: scale(1.05);
}

.benevolat-card.card-accent:hover .benevolat-circle-icon {
    background-color: var(--yellow, #EDB92D);
    color: #FFFFFF;
}


/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

.benevolat-card h3 {
    font-size: 1.2rem;
    font-weight: 800;

    color: var(--blue-dark, #16263B);

    margin-bottom: 10px;
}

.benevolat-card p {
    font-size: 0.88rem;
    line-height: 1.5;

    color: #64748B;

    margin: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .benevolat-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* En pantallas pequeñas no usamos los SVG */
    .draw-ring-svg {
        display: none;
    }

    /* Las tarjetas aparecen inmediatamente */
    .benevolat-card {
        opacity: 1 !important;
        animation: none !important;
    }

}


/* #endregion*/

/* #region 04 - OU FAIRE DU BENEVOLAT*/

/* =========================================================
   SECTION 04 — MAPA FULL WIDTH, PINES CLICABLES Y RESPONSIVE
   ========================================================= */

.hospitals-map-section {
    position: relative;
    padding: 85px 0 0 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.hospitals-map-bg-num {
    position: absolute;
    top: -20px;
    right: 2%;
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900;
    color: var(--blue-dark, #16263B);
    opacity: 0.04;
    user-select: none;
    pointer-events: none;
}

.hospitals-map-header {
    margin-bottom: 35px;
    max-width: 600px;
}

.hospitals-map-intro {
    color: #64748B;
    font-size: 1rem;
    margin-top: 8px;
}

/* ---------------------------------------------------------
   MAPA FULL WIDTH
   --------------------------------------------------------- */
.map-real-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 580px;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Imagen de Fondo del Mapa */
.map-real-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/map-hull-gatineau.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(0.85) contrast(1.05);
}

.map-real-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    /* Asegura que no bloquee los clics */
}

/* ---------------------------------------------------------
   PINES EN EL MAPA (CORREGIDO PARA CLIC)
   --------------------------------------------------------- */
.map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Elevado para asegurar que sea clicable sobre cualquier capa */
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.pin-gatineau {
    top: 21%;
    left: 63%;
}

.pin-hull {
    top: 83%;
    left: 47%;
}

.pin-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFFFFF;
    position: relative;
    z-index: 2;
}

.pin-gatineau .pin-icon {
    background-color: var(--yellow, #EDB92D);
}

.pin-hull .pin-icon {
    background-color: var(--blue-dark, #16263B);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
}

.pin-gatineau .pin-pulse {
    background-color: var(--yellow, #EDB92D);
}

.pin-hull .pin-pulse {
    background-color: var(--blue-dark, #16263B);
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }

    80%,
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.pin-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #FFFFFF;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--blue-dark, #16263B);
    white-space: nowrap;
}

/* ---------------------------------------------------------
   TARJETAS
   --------------------------------------------------------- */
.map-card {
    position: absolute;
    width: 300px;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 0;
    border-left: none !important;
    border-right: none !important;
    border-top: 3px solid var(--yellow, #EDB92D);
    border-bottom: 3px solid var(--blue-dark, #16263B);
    box-shadow: 0 15px 35px rgba(22, 38, 59, 0.15);
    z-index: 4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(22, 38, 59, 0.22);
}

.card-gatineau {
    top: 8%;
    right: 14%;
    border-top-color: var(--yellow, #EDB92D);
    border-bottom-color: var(--blue-dark, #16263B);
}

.card-hull {
    bottom: 8%;
    left: 24%;
    border-top-color: var(--blue-dark, #16263B);
    border-bottom-color: var(--yellow, #EDB92D);
}

.map-card-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.badge-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--yellow, #EDB92D);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748B;
}

.map-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue-dark, #16263B);
    margin: 0 0 4px 0;
}

.map-card-office {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow, #EDB92D);
    margin: 0 0 10px 0;
}

.map-card address {
    font-style: normal;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 12px;
}

.map-card-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-dark, #16263B);
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-card-link:hover {
    color: var(--yellow, #EDB92D);
}

/* ---------------------------------------------------------
   ADAPTACIÓN RESPONSIVE (MÓVILES Y TABLETS)
   --------------------------------------------------------- */
@media (max-width: 991px) {
    .hospitals-map-section {
        padding-bottom: 50px;
    }

    .map-real-container {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 15px;
    }

    /* Ocultamos los pines flotantes en móvil para evitar sobreposición y mejorar usabilidad */
    .map-real-image,
    .map-pin {
        display: none;
    }


    /* Las tarjetas se apilan ordenadamente en formato de lista legible */
    .map-card {
        position: relative;
        width: 100%;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        border-radius: 12px;
        border-left: 1px solid #E2E8F0 !important;
        border-right: 1px solid #E2E8F0 !important;
    }
}

/* #endregion */


/* #region GENERAL */
/* =========================================================
   ESTILOS GENERALES Y NÚMEROS DE SECCIÓN
   ========================================================= */
.hospitals-title-row,
.sectors-title-row,
.testimonial-title-row,
.become-title-row,
.contact-title-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.hospitals-number,
.sectors-number,
.testimonial-number,
.become-number,
.contact-number {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.8;
    color: var(--blue-dark, #16263B);
    opacity: 0.05;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* #endregion */


/* #region 05 SECTEURS D'ACTIVITÉS */
/* =========================================================
   SECTION 05 — SECTEURS D'ACTIVITÉS (CARRUSEL MÓVIL Y DESKTOP)
   ========================================================= */

.sectors {
    position: relative;
    padding: 90px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.sectors-bg-num {
    position: absolute;
    top: -20px;
    right: 2%;
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900;
    color: var(--blue-dark, #16263B);
    opacity: 0.04;
    user-select: none;
    pointer-events: none;
}

/* Row Header con Controles */
.sectors-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.sectors-header-text {
    max-width: 550px;
}

.sectors-intro {
    color: #64748B;
    font-size: 1rem;
    margin-top: 8px;
}

/* Filtros y Flechas */
.sectors-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sectors-filter-tabs {
    display: flex;
    background: #F1F5F9;
    padding: 4px;
    border-radius: 50px;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748B;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn.active {
    background: var(--blue-dark, #16263B);
    color: #FFFFFF;
}

.carousel-arrows {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: var(--blue-dark, #16263B);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: var(--yellow, #EDB92D);
    border-color: var(--yellow, #EDB92D);
    color: var(--blue-dark, #16263B);
}

/* Carrusel Track (Snap Scroll) */
.sectors-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 30px 5px;
    scrollbar-width: none;
    /* Ocultar barra de scroll en Firefox */
}

.sectors-carousel-track::-webkit-scrollbar {
    display: none;
    /* Ocultar barra de scroll en Chrome/Safari */
}

/* Tarjeta Tarjeta de Sectores (Exactamente 3 por fila) */
.sector-card {
    flex: 0 0 calc((100% - 48px) / 3);
    /* Tres tarjetas exactas */
    min-width: 300px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(22, 38, 59, 0.08);
    border-color: var(--yellow, #EDB92D);
}

.sector-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sector-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--yellow, #EDB92D);
}

/* Badges G & H */
.sector-locations {
    display: flex;
    gap: 6px;
}

.sector-location {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #FFFFFF;
}

.sector-location.loc-g {
    background-color: var(--yellow, #EDB92D);
}

.sector-location.loc-h {
    background-color: var(--blue-dark, #16263B);
}

.sector-image {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue-dark, #16263B);
    margin-bottom: 8px;
}

.sector-card-body p {
    color: #64748B;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark, #16263B);
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.sector-card:hover .sector-link {
    color: var(--yellow, #EDB92D);
    gap: 12px;
}

/* CTA */
.sectors-action {
    text-align: center;
    margin-top: 30px;
}

.btn-sectors-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--blue-dark, #16263B);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sectors-all:hover {
    background: var(--yellow, #EDB92D);
    color: var(--blue-dark, #16263B);
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 991px) {
    .sector-card {
        flex: 0 0 calc((100% - 24px) / 2);
        /* 2 por vista en tablets */
    }
}

@media (max-width: 640px) {

    .sector-card,
    .sectors-controls {
        /*flex: 0 0 85%;*/
        /* 1 por vista en móviles */
        display: none;
    }
}

/* #endregion */


/* #region 06 - TÉMOIGNAGE */

/* =========================================================
   SECTION 06 — TÉMOIGNAGE (DISEÑO COMPACTO & MODERNO)
   ========================================================= */

.testimonial-section {
    position: relative;
    padding: 60px 0;
    /* Imagen por defecto si no se ha subido una desde WP */
    background-color: var(--blue-dark, #16263B);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* EFECTO PARALLAX NATIVO */
    background-attachment: fixed;
    color: #FFFFFF;
    overflow: hidden;
}

/* Marca de Agua 06 */
.testimonial-bg-num {
    position: absolute;
    top: -20px;
    right: 2%;
    font-size: clamp(8rem, 15vw, 15rem);
    font-weight: 900;
    color: #FFFFFF;
    opacity: 0.02;
    user-select: none;
    pointer-events: none;
}

/* Tarjeta Principal */
.testimonial-card {
    background: rgba(42, 67, 101, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

/* Desactivar Parallax en móviles para mejorar el rendimiento */
@media (max-width: 1024px) {
    .testimonial-section {
        background-attachment: scroll;
    }
}

/* Badge de Sección Superior */
.testimonial-card-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--yellow);
}

.section-label-light {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow, #EDB92D);
}

.badge-num-yellow {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--yellow, #EDB92D);
}

/* Layout Grid Interno de 2 Columnas */
.testimonial-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 35px;
    align-items: center;
}

/* Columna Izquierda: Perfil */
.testimonial-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid var(--yellow);
}

.avatar-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow, #EDB92D), #F3D068);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(237, 185, 45, 0.25);
}

.avatar-initials {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue-dark, #16263B);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 800;
}

.testimonial-author span {
    display: block;
    font-size: 0.85rem;
    color: #CBD5E1;
    margin-top: 2px;
}

.testimonial-author small {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 2px;
}

/* Columna Derecha: Texto */
.testimonial-body {
    position: relative;
}

.quote-icon {
    color: var(--yellow, #EDB92D);
    opacity: 0.3;
    margin-bottom: 8px;
}

.testimonial-title {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: #E2E8F0;
    margin: 0;
    font-style: italic;
    opacity: 0.95;
}

/* ---------------------------------------------------------
   ANIMACIÓN ENTRADA FLUIDA (SCROLL REVEAL)
   --------------------------------------------------------- */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsivo */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-sidebar {
        padding-right: 0;
        border-right: none;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* #endregion */


/* #region 07 - COMMENT DEVENIR BÉNÉVOLE ? */
/* =========================================================
   SECTION 07 — COMMENT DEVENIR BÉNÉVOLE ?
   ========================================================= */
.become-volunteer {
    position: relative;
    padding: 90px 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.become-bg-num {
    position: absolute;
    top: -20px;
    right: 2%;
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900;
    color: var(--blue-dark, #16263B);
    opacity: 0.03;
    user-select: none;
    pointer-events: none;
}

/* Header & Número Amarillo al lado del Título */
.become-header {
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.become-title-row .section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.title-number-badge {
    color: var(--yellow, #EDB92D);
    font-weight: 900;
    font-size: 0.9em;
}

.become-intro {
    color: #64748B;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* =========================================================
   DESPLEGABLE / ACCORDEÓN: CRITÈRES D'ADMISSIBILITÉ
   ========================================================= */
.become-requirements-box {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.become-requirements-box[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #CBD5E1;
}

/* Cabecera Clicable */
.requirements-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    /* Elimina la flecha por defecto del sistema */
    user-select: none;
    transition: background-color 0.2s ease;
}

.requirements-header::-webkit-details-marker {
    display: none;
    /* Elimina la flecha por defecto en Safari/Chrome */
}

.requirements-header:hover {
    background-color: #F8FAFC;
}

.req-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.req-icon {
    width: 44px;
    height: 44px;
    background: rgba(237, 185, 45, 0.15);
    color: #B58400;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirements-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--blue-dark, #16263B);
}

.req-subtitle {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    color: #64748B;
}

/* Botón Estado (Mostrar / Ocultar) */
.req-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-dark, #16263B);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.requirements-header:hover .req-toggle-btn {
    background: var(--blue-dark, #16263B);
    color: #FFFFFF;
}

.toggle-text-hide {
    display: none;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

/* Estado cuando está abierto */
.become-requirements-box[open] .chevron-icon {
    transform: rotate(180deg);
}

.become-requirements-box[open] .toggle-text-show {
    display: none;
}

.become-requirements-box[open] .toggle-text-hide {
    display: inline;
}

/* Contenido Interno */
.requirements-content {
    padding: 0 25px 25px 25px;
    border-top: 1px solid #F1F5F9;
    animation: fadeIn 0.3s ease-in-out;
}

.req-intro-text {
    font-size: 0.9rem;
    color: #64748B;
    margin: 18px 0 15px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px 24px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #334155;
}

.req-dot {
    width: 8px;
    height: 8px;
    background-color: var(--yellow, #EDB92D);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste móvil */
@media (max-width: 640px) {
    .requirements-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .req-toggle-btn {
        align-self: flex-start;
    }
}

/* Línea del Tiempo / Secuencia de Pasos */
.become-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.process-line {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #E2E8F0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-badge {
    width: 64px;
    height: 64px;
    background: var(--blue-dark, #16263B);
    color: var(--yellow, #EDB92D);
    border: 4px solid #F8FAFC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(22, 38, 59, 0.15);
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-step:hover .step-badge {
    transform: scale(1.1);
    background: var(--yellow, #EDB92D);
    color: var(--blue-dark, #16263B);
}

.step-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid #E2E8F0;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.step-card h3 {
    font-size: 1.05rem;
    color: var(--blue-dark, #16263B);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* CTA Botón */
.become-action {
    text-align: center;
    margin-bottom: 40px;
}

.btn-become-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: var(--blue-dark, #16263B);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(22, 38, 59, 0.15);
    transition: all 0.3s ease;
}

.btn-become-primary:hover {
    background-color: var(--yellow, #EDB92D);
    color: var(--blue-dark, #16263B);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 185, 45, 0.3);
}

.btn-become-primary svg {
    transition: transform 0.3s ease;
}

.btn-become-primary:hover svg {
    transform: translateX(5px);
}

/* Caja de Contacto Directo */
.become-contact-box {
    background: #E2E8F0;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--blue-dark, #16263B);
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark, #16263B);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: #B58400;
}

/* Ajustes Responsivos */
@media (max-width: 991px) {
    .process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .become-contact-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-links {
        justify-content: center;
    }
}

/* #endregion */

/* #region CONTACT */
/* =========================================================
   SECTION 08 — CONTACT
   ========================================================= */
.contact {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0 50px;
}

.contact-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--blue-dark, #16263B);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item address,
.contact-item a {
    font-style: normal;
    color: var(--blue-dark, #16263B);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--yellow, #EDB92D);
}

.contact-action {
    text-align: center;
}

/* #endregion */



/* ==========================================================
           CTA
        ========================================================== */

.cta {
    padding: 80px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 70px;

    background: var(--yellow);

    border-radius: var(--radius-lg);

    color: var(--blue-dark);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -130px;

    border: 60px solid rgba(42, 67, 101, .08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.cta h2 {
    margin: 0 0 15px;

    font-size: clamp(2rem,
            4vw,
            3.4rem);

    line-height: 1.05;
    letter-spacing: -.04em;
}

.cta p {
    margin: 0 0 30px;

    color: rgba(30, 48, 73, .78);

    font-size: 1.08rem;
}

/* #region Bton volver arriba*/
/* Botón Volver Arriba */
.obnl-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--blue);
    /* Usa la variable de tu tema o tu color primario */
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

/* Estado visible (se activa con JavaScript) */
.obnl-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover y Enfoque adaptados al tema */
.obnl-back-to-top:hover,
.obnl-back-to-top:focus-visible {
    background-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    outline: none;
}

.obnl-back-to-top:active {
    transform: translateY(0);
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .obnl-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* #endregion */

/* #region FOOTER */
/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    position: relative;
    padding: 80px 0 30px;
    background: var(--blue-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-brand p {
    max-width: 340px;
    color: rgba(255, 255, 255, .65);
}

.footer-title {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.logo {
    width: 70px;
    flex: 0 0 70px;
}

.logo a {
    display: block;
    width: 100%;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-text {
    flex: 1;
}

.footer-name {
    color: var(--white);
}


.footer-sub {
    color: var(--yellow);
}

/* #endregion */

/* ==========================================================
           RESPONSIVE
        ========================================================== */

@media (max-width: 950px) {

    .main-nav {
        position: absolute;

        left: 20px;
        right: 20px;
        top: calc(100% + 10px);

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 25px;

        background: var(--white);

        border-radius: 18px;

        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav .btn {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-card {
        left: 50%;
        right: auto;

        transform: translateX(-50%) rotate(3deg);
    }

    .hero-floating-card {
        left: 50%;
        bottom: 0;

        transform: translateX(-50%);
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-number {
        font-size: 7rem;
    }

    .program-grid,
    .news-grid,
    .involved-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-copy {
        padding: 45px 0 0;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-item:nth-child(2) {
        border-right: 0;
    }

    .impact-item {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px),
                var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-card {
        width: 270px;
        height: 330px;
    }

    .hero-floating-card {
        width: 190px;
        padding: 18px;
    }

    .program-header {
        display: block;
    }

    .program-grid,
    .news-grid,
    .involved-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        border-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }
}