﻿/* =========================================================
   Variáveis globais
========================================================= */
:root {
    --azul-abrinq: #1D4E89;
    --amarelo: #FFD530;
    --texto: #FFFFFF;
    --bege: #F4EFE6;
    --verde: #35B56A; /* usado no botão do formulário */
    --radius-xl: 24px;
    --radius-lg: 18px;
}

/* util */
.hide-sm {
    display: inline;
}
/* <br class="hide-sm"> */

/* =========================================================
   SEÇÃO 1 — HERO
========================================================= */
.eac-hero {
    background: var(--azul-abrinq);
    color: var(--texto);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    min-height: 450px;
    display: flex;
    align-items: end;
}
.eac-hero__content{
    margin-top:80px;
}
.eac-hero__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr; /* texto | galeria */
    gap: 48px;
    padding: 0 24px;
    position: relative; /* referencial do login mobile */
}

/* Conteúdo esquerdo */
.eac-hero__logo {
    height: 112px;
    width: auto;
    margin-bottom: 12px;
}

.eac-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 121%;
    margin-bottom: 23px;
}

.eac-hero__subtitle {
    font-family: "IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 33px;
}

.eac-hero__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 359px;
    height: 51px;
    border-radius: 25px;
    background: var(--amarelo);
    color: #000;
    text-decoration: none;
    font-family: "IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    font-size: 15px;
    font-weight: 400;
}

/* Coluna direita */
.eac-hero__media {
    display: grid;
    grid-template-rows: auto 1fr; /* login desktop + galeria */
    gap: 16px;
    align-content: start;
}

/* Galeria (mosaico) */
.eac-hero__gallery {
    display: grid;
    grid-template-areas:
        "big top"
        "big bottom";
    grid-template-columns: 1.3fr .9fr;
    gap: 22px;
}

.g {
    margin: 0;
    width: 265px;
}

    .g img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

.g--big {
    grid-area: big;
    height: 413px;
}

    .g--big img {
        object-position: 0% 50%;
    }

.g--top {
    height: 199px;
}

.g--bottom {
    grid-area: bottom;
    height: 190px;
}

/* ===== Login (base) ===== */
.s1_login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--texto);
}

    .s1_login p {
        margin: 0;

        line-height: 1.15;
        text-align: right;
    }

    .s1_login a {
        color: var(--texto);
        text-decoration: underline !important;
    }

    .s1_login img {
        width: 22px;
        height: 22px;
        display: block;
    }

.s1_login--desktop{
    text-align:right;
    justify-content:end;
    padding:20px 0px;
}
/* Visibilidade e posicionamento */
@media (min-width: 1024px) {
    .s1_login--desktop {
        display: flex;
    }
    /* mostra no topo da coluna direita */
    .s1_login--mobile {
        display: none;
    }
    /* esconde no desktop */
}

@media (max-width: 1024px) {
    /* Empilha colunas */
    .eac-hero__wrap {
        grid-template-columns: 1fr;
    }

    .eac-hero__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "big big" "top bottom";
    }

    .g {
        width: auto;
    }

    /* Login mobile: no topo-direito do container (quadrado vermelho) */
    .s1_login--desktop {
        display: none;
    }
    /* esconde o da direita */
    .s1_login--mobile {
        display: flex;
        position: absolute;
        top: 16px; /* ajuste fino */
        right: 16px; /* dentro do container */
        z-index: 5;
        margin-top: 60px;
    }


}


/* =========================================================
   SEÇÃO 2 — CONHEÇA A FUNDAÇÃO ABRINQ
========================================================= */
.eac-about {
    background: var(--bege);
    color: #0F172A;
    height: 500px;
    display: flex;
    align-items: center;
}

.eac-about__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr; /* texto | mídia */
    gap: 48px;
    align-items: center;
    padding: 0 24px;
}

.eac-about__title {
    margin-bottom: 44px;
    color: #000;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
    font-family: Inter;
}

.eac-about__text-desktop {
    color: #000;
    font-family: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.eac-about__text-mobile {
    display: none;
}

.eac-about__text-desktop p {
    margin: 0 0 12px;
}

.eac-about__media {
    display: grid;
    justify-items: end;
    align-items: center;
}

.eac-about__img {
    width: clamp(300px, 40vw, 470px);
    height: auto;
    display: block;
}

/* =========================================================
   SEÇÃO 3 — CTA (rabiscos)
========================================================= */
.eac-cta {
    background: rgba(196, 196, 196, 0.30);
}

.eac-cta__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 360px;
    height: auto;
    padding: 48px 24px;
}

    .eac-cta__wrap > *:not(.eac-cta__scribble) {
        position: relative;
        z-index: 1;
    }

.eac-cta__title {
    margin: 0 0 12px;
    color: var(--azul-abrinq);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
    text-align: center;
}

.break-mobile {
    display: none;
}

.eac-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--amarelo);
    color: #000;
    text-align: center;
    font-family: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}
/* Rabiscos decorativos */
.eac-cta__scribble {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.eac-cta__scribble--blue {
    left: 120px;
    bottom: 0;
    width: 201.397px;
    height: 192.641px;
    aspect-ratio: 23/22;
}

.eac-cta__scribble--yellow {
    right: 0px;
    top: 60px;
    width: 258.479px;
    height: 208.719px;
    aspect-ratio: 161/130;
}

/* =========================================================
   SEÇÃO: Sobre o Programa
========================================================= */
.eac-program {
    background: var(--bege);
    color: #0F172A;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.eac-program__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 72px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.eac-program__title {
    grid-column: 1 / -1;
    margin: 0 0 18px;
    color: var(--azul-abrinq);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
}

.eac-program__left {
    grid-column: 1;
}

.eac-program__right {
    grid-column: 2;
    justify-self: end;
}

.eac-program__text-desktop {
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
}

    .eac-program__text-desktop p {
        margin: 0 0 30px;
    }

.eac-program__text-mobile {
    display: none;
}

.eac-program__btn {
    display: block;
    width: 359px;
    height: 51px;
    flex-shrink: 0;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 300;
    border-radius: 25px;
    background: var(--amarelo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 52px;
}

.eac-program__img {
    height: 465px;
    width: 450px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    object-position: 0% 80%;
    border-radius: var(--radius-xl);
}

/* =========================================================
   SEÇÃO: Desafios da Infância
========================================================= */
.eac-issues {
    background: #fff;
    color: #0F172A;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.eac-issues__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 64px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: end;
}

.eac-issues__title {
    color: var(--azul-abrinq);
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
    margin-bottom: 61px;
}

.facts {
    list-style: none;
    padding: 0;
    margin: 12px 0 10px;
    max-width: 700px;
    font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

    .facts .fact + .fact {
        margin-top: 16px;
    }

.fact {
    height: 140px;
    border-radius: var(--radius-xl);
    background: var(--amarelo);
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    overflow: hidden;
}

.fact__title {
    display: block;
    height: 78px;
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 700;
    border-radius: 20px;
    background: #D9D9D9;
    padding: 20px;
}

.fact__desc {
    background: var(--amarelo);
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 300;
    height: 70px;
    margin: 0 20px;
}

.eac-issues__source {
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 10px;
    font-weight: 700;
}

.eac-issues__right {
    display: grid;
    justify-items: end;
}

.eac-issues__img {
    width: 475px;
    height: 700px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

/* =========================================================
   SEÇÃO: Impacto / CTA
========================================================= */
.eac-impact-cta {
    position: relative;
    --bg-url: url("/img/landpage/img-realidade.webp");
    height: 348px;
}

    .eac-impact-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--bg-url);
        background-size: cover;
        background-position: right center;
        z-index: -2;
    }

.eac-impact-cta__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 72px;
}

.eac-impact-cta__title {
    color: var(--azul-abrinq);
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
}

.eac-impact-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    width: 359px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--amarelo);
    color: #000;
    text-decoration: none;
    font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 44px; /* centralizado por padrão */
}

/* =========================================================
   SEÇÃO: Benefícios
========================================================= */
.eac-benefits {
    background: #fff;
    color: #0F172A;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.eac-benefits__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 56px;
}

.eac-benefits__header {
    text-align: center;
    margin-bottom: 22px;
}

.eac-benefits__title-desktop, .eac-benefits__title-mobile {
    color: var(--azul-abrinq);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
    margin-bottom: 42px;
}
    .eac-benefits__title-mobile{
        display:none;
    }

    .eac-benefits__subtitle-desktop, .eac-benefits__subtitle-mobile {
        color: #000;
        text-align: center;
        font-family: 'IBM Plex Sans';
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 45px;
    }
.eac-benefits__subtitle-mobile {
    display: none;
}

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 28px;
        height: auto; /* não trava a altura */
    }

.benefit-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: #fff;
    overflow: visible;
}

.benefit-card__top {
    background: var(--amarelo);
    padding: 16px 18px;
    height: 126px;
    display: flex;
    align-items: center;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

    .benefit-card__top img {
        display: block;
        margin: 0 auto;
        width: 80px;
    }

.benefit-card__icon {
    width: 56px;
    height: auto;
    display: block;
}

.benefit-card__body {
    background: var(--bege);
    padding: 0px 18px;
    min-height: 170px;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.benefit-card__title {
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 700;
    margin-top: 28px;
}

.benefit-card__text {
    color: #000;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 300;
}

.benefit-card__dot {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--azul-abrinq);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 700;
    z-index: 3;
}

.benefits-grid .benefit-card:last-child .benefit-card__dot {
    display: none;
}

.eac-benefits__banner {
    margin-top: 26px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.banner__img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.banner__content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
}

.banner__title {
    margin: 0 0 10px;
    color: #000;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
}

.banner__btn {
    width: 359px;
    height: 51px;
    border-radius: 25px;
    background: var(--azul-abrinq);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Sans';
    font-size: 15px;
    font-weight: 200;
}

/* =========================================================
   SEÇÃO: Compromissos da Empresa
========================================================= */
.eac-pledges {
    background: linear-gradient(276deg, #D2AD1E -0.75%, var(--amarelo) 70.65%);
    padding: 56px 0 64px;
}

.eac-pledges__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eac-pledges__header {
    margin-bottom: 28px;
}

.eac-pledges__title {
    color: var(--azul-abrinq);
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
}

.eac-pledges__subtitle {
    color: var(--azul-abrinq);
    font-style: normal;
    font-family: Inter;
    font-size: 24px;
    line-height: 121.041%;
    margin-bottom: 64px;
}

.pledges-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.pledge {
    --card-h: 220px;
    --img-w: 220px;
    display: grid;
    grid-template-columns: 1fr var(--img-w);
    height: var(--card-h);
    border-radius: 20px;
    background: var(--azul-abrinq);
}

.pledge__text-desktop, .pledge__text-mobile {
    padding: 18px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bege);
    text-shadow: 0 4px 4px rgba(0,0,0,.25);
    font-family: "IBM Plex Sans";
    font-size: 15px;
    font-weight: 700;
}

.pledge__text-mobile {
    display: none;
}

    .pledge__text-mobile h3 {
        margin: 0 0 10px;
        font-size: clamp(14px,1.25vw,18px);
        font-weight: 800;
        line-height: 1.25;
    }

    .pledge__text-mobile p {
        margin: 0;
        font-family: "IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
        font-size: clamp(13px,1.05vw,16px);
        font-weight: 300;
        line-height: 1.45;
    }

    .pledge__text-desktop h3 {
        margin: 0 0 10px;
        font-size: clamp(14px,1.25vw,18px);
        font-weight: 800;
        line-height: 1.25;
    }

    .pledge__text-desktop p {
        margin: 0;
        font-family: "IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
        font-size: clamp(13px,1.05vw,16px);
        font-weight: 300;
        line-height: 1.45;
    }

.pledge__img {
    width: var(--img-w);
    height: var(--card-h);
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 20px;
}

/* =========================================================
   SEÇÃO: Empresas já reconhecidas (carrosséis robustos)
========================================================= */
.eac-brands {
    background: var(--bege);
    padding: 40px 0 32px;
}

.eac-brands__wrap {
    max-width: 100vw;
    margin: 0 auto;
}

.eac-brands__title {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.21;
    margin: 0 0 18px;
}

/* Faixa com máscara de borda (fade) */
.brand-strip {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-block: 14px;
    margin-bottom: 14px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

/* Trilho (duas cópias .logos) */
.marquee {
    --gap: 36px;
    --speed: 70s;
    display: flex;
    gap: var(--gap);
    width: max-content;
    will-change: transform;
}

.marquee--ltr {
    animation: scroll-ltr var(--speed) linear infinite;
}

.marquee--rtl {
    animation: scroll-rtl var(--speed) linear infinite;
}

.brand-strip:hover .marquee {
    animation-play-state: paused;
}

/* Cada cópia – não encolhe e ocupa >=100% */
.marquee > .logos {
    flex: 0 0 auto;
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Logos – também não encolhem */
.logos img {
    height: clamp(26px, 4.5vw, 48px);
    width: auto;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
}

/* Animações (2 cópias => move 50%) */
@keyframes scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee {
        animation: none !important;
    }
}

/* =========================================================
   SEÇÃO: Abrace esta causa
========================================================= */
.eac-hero-cta {
    position: relative;
    min-height: 296px;
    display: flex;
    align-items: center;
    background-image: url("/img/landpage/img-abrace.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}

.eac-hero-cta__wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
}

.eac-hero-cta__title {
    color: var(--azul-abrinq);
    text-align: left;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
}

.eac-hero-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--amarelo);
    color: #000;
    font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    width: 359px;
    height: 51px;
    flex-shrink: 0;
    margin-top: 21px;
    margin-left: 30px;
}

/* =========================================================
   CONTATO
========================================================= */
.eac-contact {
    background: var(--azul-abrinq);
    color: #fff;
    padding: 48px 0 64px;
}

.eac-contact__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.eac-contact__title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 121.041%;
    margin-bottom: 15px;
}

.eac-contact__lead {
    color: #FFF;
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 31px;
}

.eac-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 13px;
}

.eac-form__field--full {
    grid-column: 1 / -1;
}

.eac-form__field input, .eac-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 0;
    color: #0B1220;
    font: 400 15px/1.35 "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.eac-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

    .eac-form__field input::placeholder, .eac-form__field textarea::placeholder {
        color: #7B8CA7;
    }

    .eac-form__field input:focus, .eac-form__field textarea:focus {
        outline: 0;
        box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 0 0 5px rgba(53,181,106,.8);
    }

.eac-form__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.eac-form__submit {
    height: 44px;
    width: 177px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: var(--verde);
    color: #fff;
    font: 700 15px/1 "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    cursor: pointer;
}



/* ≤1100px */
@media (max-width: 1100px) {
    .eac-program__wrap {
        gap: 28px;
    }

    .eac-hero__title {
        font-size: 40px;
    }

    .break-desafios {
        display: none;
    }

    .eac-cta__scribble--yellow, .eac-cta__scribble--blue {
        width: 180px;
        height: auto;
    }

    .eac-issues__img {
        width: clamp(320px, 56vw, 480px);
        height: auto;
        aspect-ratio: 4/5;
    }

    .pledges-grid {
        gap: 22px;
    }

    .pledge {
        --card-h: 200px;
        --img-w: 200px;
    }

    .marquee {
        --gap: 28px;
        --speed: 60s;
    }
}

/* ≤1024px (tablet & mobile) */
@media (max-width: 1024px) {


        .eac-hero__wrap {
            grid-template-columns: 1fr;
        }




        .eac-brands {
            display: none;
        }

        .eac-benefits__banner {
            border-radius: 20px;
            background-color: #ffd301ff;
        }

        .eac-benefits__wrap {
            max-width: 600px;
        }

        .banner__title {
            color: var(--azul-abrinq);
            font-size: 30px;
        }

        .banner__img {
            display: none;
        }

        .eac-benefits__banner {
            height: 195px;
            background: linear-gradient(0deg, rgba(255, 213, 48, 0.84), rgba(255, 213, 48, 0.84)), /* camada de cor por cima */
            url("/img/landpage/img-depois-mobile.webp") center / cover no-repeat; /* imagem por baixo */
            border-radius: 18px; /* se quiser */
        }

        .pledge__text-mobile {
            display: block;
        }

        .pledge__text-desktop {
            display: none;
        }

        .fact {
            margin-bottom: 31px;
        }

        .eac-impact-cta {
            height: 239px;
            text-align: center;
        }

        .eac-pledges__subtitle {
            margin-bottom: 27px;
        }

        .eac-contact__wrap {
            max-width: 600px;
        }

        .pledge__img {
            display: none;
        }

        .eac-pledges {
            padding-top: 29px;
            padding-bottom: 10px;
        }

        .eac-pledges__wrap {
            max-width: 600px;
            padding: 0px;
        }

        .pledges-grid {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }

        .eac-pledges__title {
            font-size: 30px;
        }

        .eac-pledges__subtitle {
            color: var(--azul-abrinq);
            font-size: 15px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
        }

        .pledge {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;
            height: auto;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 33px;
        }

        .eac-hero {
            padding: 0;
            align-items: stretch;
            gap: 0;
        }

        .eac-issues__title {
            margin: 31px 33px;
        }

        .eac-hero__wrap {
            grid-template-columns: 1fr;
            gap: 0px;
            padding: 0px;
        }

        .eac-issues__source {
            margin-left: 30px;
            margin-top: -20px;
        }

        .eac-issues__wrap {
            max-width: 600px;
        }

        .eac-issues__right {
            display: none;
        }

        .eac-issues__left {
            padding: 0 30px;
        }

        .eac-issues__title {
            font-size: 30px;
        }

        .eac-hero__content {
            text-align: left;
            padding: 58px 0px 51px 0px;
            margin-top: 0;
        }

        .eac-hero__logo {
            height: 74px;
            margin: 0 0 40px;
        }

        .eac-hero__title {
            font-size: 40px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .eac-program__text-desktop {
            max-width: 780px;
            margin: 0 auto;
            display: none;
        }

        .eac-program__text-mobile {
            display: block;
        }

        .eac-hero__subtitle {
            font-size: 14px;
            margin-bottom: 37px;
        }

        .eac-hero__cta {
            width: 100%;
            max-width: 100%;
            height: 51px;
            font-size: 15px;
        }

        .eac-hero__gallery {
            /* altura responsiva do conjunto e espaçamento entre peças */
            --mosaic-h: 331.786px;
            --mosaic-gap: 12px;
            width: 100%;
            max-width: 560px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* 50% | 50% */
            grid-template-rows: 1fr 1fr; /* duas linhas iguais */
            grid-template-areas:
                "big top"
                "big bottom";
            gap: var(--mosaic-gap);
            gap: 0;
        }

            /* zera tamanhos fixos e faz cada bloco preencher sua célula da grid */
            .eac-hero__gallery .g {
                width: 100%;
                height: 100%;
                margin: 0;
            }

                .eac-hero__gallery .g img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 16px; /* ajuste o raio se quiser */
                }

        /* áreas da grid */
        .g--big {
            grid-area: big;
        }

            .g--big img {
                object-position: 50% 50%;
            }

        .g--top {
            grid-area: top;
        }

        .g--bottom {
            grid-area: bottom;
        }

        /* se existir algo como .g { width: 265px } ou heights fixos, isso aqui sobrepõe */


        .hide-sm {
            display: none;
        }
        /* esconde <br> auxiliar */

        /* ABOUT */
        .eac-about {
            height: auto;
            padding-top: 36.66px;
        }

        .eac-about__wrap {
            grid-template-columns: 1fr;
            gap: 0;
            max-width: 600px;
            padding-bottom: 20px;
        }

        .eac-about__media {
            justify-items: start;
        }

        .eac-about__title {
            color: #1D4E89;
            font-size: 30px;
            font-style: normal;
            font-weight: 900;
            line-height: 121.041%;
            margin-bottom: 18px;
        }

        .eac-about__text-desktop {
            display: none;
        }

        .eac-about__text-mobile {
            display: block;
            font-size: 15px;
            font-style: normal;
            font-weight: normal;
            line-height: normal;
            color: #000;
        }

        .eac-about__img {
            display: none;
        }

        .eac-cta {
            background: var(--azul-abrinq);
        }

        .eac-cta__btn {
            width: 100%;
        }
        /* CTA rabiscos menores */
        .eac-cta__wrap {
            min-height: 320px;
            max-width: 600px;
        }

        .eac-cta__title {
            color: white;
            font-size: 30px;
            font-style: normal;
            font-weight: 900;
            line-height: 121.041%;
        }

        .break-desktop {
            display: none;
        }

        .break-mobile {
            display: block;
        }

        .eac-cta__scribble--yellow {
            top: 8px;
            width: 100px;
            height: auto;
        }

        .eac-cta__scribble--blue {
            display: none;
        }

        /* PROGRAMA */
        .eac-program__wrap {
            grid-template-columns: 1fr;
            grid-template-areas: "title" "text" "img";
            max-width: 600px;
            padding-bottom: 0px;
        }

        .eac-program__title {
            font-size: 28px;
            text-align: left;
        }

        .eac-program__left {
            grid-area: text;
        }

        .eac-program__right {
            grid-area: img;
            justify-self: center;
            width: 100%;
        }

        .eac-program__img {
            width: 100%;
            height: 203px;
            aspect-ratio: 4/5;
            object-position: center 58%;
        }

        .eac-program__btn {
            width: 100%;
            margin-top: 39px;
            margin-bottom: 25px;
        }

        .benefit-card__body {
            padding-top: 10px;
            padding-left: 40px;
        }

        .benefit-card__title {
            margin-top: 10px;
        }
        /* ISSUES */
        .eac-issues__wrap {
            grid-template-columns: 1fr;
            gap: 0px;
            padding: 0;
        }



        .eac-issues__right {
            justify-items: start;
        }

        .eac-impact-cta {
            --bg-url: url("/img/landpage/img-realidade-mobile.webp") !important;
        }
        /* IMPACT CTA */
        .eac-impact-cta__wrap {
            padding: 32px 29px 30px 36px;
        }

        .eac-impact-cta__title {
            font-size: 30px;
            display: block;
            max-width: 600px;
            margin: 0 auto;
        }

        .eac-impact-cta__btn {
            width: 100%;
            max-width: 500px;
            margin-top: 24px;
            display: flex;
            background-color: var(--azul-abrinq);
            color: white;
            font-style: normal;
            font-weight: 200 !important;
            line-height: normal;
        }

        /* BENEFITS */
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
            height: auto;
        }

        .benefit-card__dot {
            display: none;
        }

        .eac-benefits__title-desktop {
            display: none;
        }

        .eac-benefits__title-mobile {
            display: block;
            text-align: left;
            font-size: 30px;
            font-style: normal;
            font-weight: 900;
            line-height: 121.041%; /* 36.312px */
        }

        .eac-benefits__subtitle-desktop {
            display: none;
        }

        .eac-benefits__subtitle-mobile {
            display: block;
            text-align: left;
        }

        .banner__img {
            height: 260px;
            object-fit: cover;
        }



        .pledge {
            --card-h: 192px;
            --img-w: 192px;
        }

        .pledge__text-desktop h3 {
            font-size: clamp(16px, 2.4vw, 18px);
        }

        .pledge__text-desktop p {
            font-size: clamp(14px, 2.1vw, 16px);
        }

        /* BRANDS */
        .eac-brands__wrap {
            padding: 0 20px;
        }

        .brand-strip {
            padding-block: 12px;
        }

        /* HERO–CTA Abrace */
        .eac-hero-cta {
            height: 307px;
            background: linear-gradient(270deg, rgba(255, 213, 48, 0.00) 0%, rgba(255, 213, 48, 0.80) 63.46%), url("/img/landpage/img-abrace-mobile.webp") lightgray 50% / cover no-repeat;
            background-position: 80% 80%;
        }

        .eac-hero-cta__wrap {
            padding: 22px 16px 28px;
            max-width: 600px;
        }

        .eac-hero-cta__title {
            font-size: 40px;
        }

        .eac-hero-cta__btn {
            width: 100%;
            max-width: 320px;
            margin-left: 0;
            background-color: var(--azul-abrinq);
            color: white;
            font-style: normal;
            font-weight: 200;
            line-height: normal;
        }

        /* CONTATO */
        .eac-contact__wrap {
            padding: 0 20px;
        }

        .eac-contact__title {
            font-size: clamp(28px, 6.2vw, 40px);
        }

        .eac-form {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .eac-form__actions {
            margin-top: 2px;
        }

        .eac-form__submit {
            width: 100%;
        }
    }

/* ≤900px */
@media (max-width: 900px) {
    .pledges-grid {
        grid-template-columns: 1fr;
    }

    .pledge {
        --card-h: 190px;
        --img-w: 190px;
    }
}

/* ≤840px — mini-footer fica mais estreito */
@media (max-width: 840px) {
    .eac-minifooter__wrap {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}



/* ≤640px (mobile) */
@media (max-width: 640px) {
    .eac-hero-cta__btn{
        margin-left:20px;
    }
    .eac-pledges__title, .eac-pledges__subtitle {
        margin-left: 30px;
    }
    .s1_login--mobile {
        margin-right: 20px;
    }
        .eac-hero-cta__wrap {
    padding: 81px 20px 43px 31px;
    }

        .eac-about {
        padding: 0px;
    }
    .eac-benefits__wrap {
        padding: 0;
    }
    .eac-benefits__title-mobile {
    margin: 37px 36px 10px 34px;
    }
    .eac-benefits__subtitle-mobile {
        margin: 10px 36px 44px 34px;
    }
    .pledge {
        margin-left: 6px;
        margin-right: 6px;
    }

    .eac-hero__content {
        padding-left: 39px;
        padding-right: 35px;
    }

    .eac-issues__left {
        padding: 0;
    }

    .eac-about__wrap {
        padding: 46px 32px 20px 42px;
    }

    .eac-program__wrap {
        padding: 0;
    }

    .eac-program__title {
        margin: 39px 19px 0px 28px;
        font-size: 28px;
    }


    .eac-program__left {
        padding-left: 28px;
        padding-right: 36px;
    }


    .eac-issues__wrap {
        padding: 0;
    }

    .eac-issues__img {
        width: clamp(240px, 84vw, 380px);
    }

    .eac-impact-cta::before {
        background-position: center right;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card__body {
        min-height: unset;
    }

    .banner__img {
        height: 240px;
    }

    .marquee {
        --gap: 18px;
        --speed: 55s;
    }

    .logos img {
        height: clamp(22px, 6vw, 40px);
    }

    .eac-cta__wrap {
        min-height: 300px;
        padding: 36px 16px;
    }




    .eac-minifooter__wrap {
        flex-direction: column;
        gap: 10px;
        padding: 28px 16px;
    }

    .eac-minifooter__logo {
        width: 56px;
    }
}

/* ≤520px */
@media (max-width: 520px) {


    .eac-cta__scribble--yellow {
        width: clamp(70px, 22vw, 110px);
    }

    .eac-cta__scribble--blue {
        width: clamp(62px, 20vw, 96px);
    }
}

/* ≤380px */
@media (max-width: 380px) {
    .eac-impact-cta__title {
        font-size: 28px;
        margin-top:32px;
    }
    .eac-impact-cta__btn, .banner__btn, .eac-cta__btn {
        width: 100%;
        font-size: 13px;
    }
    .eac-hero-cta__btn {
        margin-left: 0px;
    }

    .eac-hero__content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .eac-hero__cta {
        font-size: 13px;
    }


    .eac-cta__title {
        font-size: clamp(22px, 7.2vw, 28px);
    }



    .eac-impact-cta__wrap {
        padding-top: 10px;
    }

    .eac-hero__title {
        font-size: 35PX;
    }


}
@media (max-width: 360px) {


    .eac-about__title, .eac-cta__title, .eac-program__title, .eac-issues__title, .eac-impact-cta__title, .eac-benefits__title-mobile, .eac-pledges__title, .eac-contact__title {
        font-size: 25px;
    }
    .abrace-title {
        font-size: 40px;
    }
}
    /* MOBILE (já como no print anterior) */
    .eac-minifooter__info {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    color: #1D4E89;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}



    .eac-minifooter__info strong {
        font-weight: 700
    }

    .eac-minifooter__info a {
        color: #1D4E89;
        text-decoration: none;
    }

    .eac-minifooter__info .sep {
        opacity: .6
    }

    .eac-minifooter__info .contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .eac-minifooter__info .brand {
        display: flex;
        justify-content: center;
        margin: 6px 0 2px
    }

        .eac-minifooter__info .brand img {
            height: 44px;
            max-width: 100%
        }

    /* Ordem mobile: contatos → horário → logo → endereço */
    .eac-minifooter__info .contacts {
        order: 1
    }

    .eac-minifooter__info .hours {
        order: 2
    }

    .eac-minifooter__info .brand {
        order: 3
    }

    .eac-minifooter__info .addr {
        order: 4
    }

/* DESKTOP – mantém exatamente como no seu layout */
@media (min-width: 1024px) {
    /* vira um grid 2 colunas: logo | textos empilhados */
    .eac-minifooter__info {
        display: grid;
        grid-template-columns: 140px 1fr;
        grid-template-areas:
            "brand addr"
            "brand contacts"
            "brand hours";
        align-items: center;
        text-align: left;
    }

        .eac-minifooter__info .brand {
            grid-area: brand;
            justify-content: flex-start;
            margin: 0
        }

        .eac-minifooter__info .addr {
            grid-area: addr;
            margin: 0
        }

        .eac-minifooter__info .contacts {
            grid-area: contacts;
            justify-content: flex-start
        }

        .eac-minifooter__info .hours {
            grid-area: hours
        }

        /* barras verticais e espaçamentos mais confortáveis no desktop */
        .eac-minifooter__info .sep {
            padding: 0 8px
        }
}

.benefits-dots {
    visibility: hidden; /* começa invisível, só aparece se houver overflow */
}
/* MOBILE – carrossel sem barra e com setas mais altas */
@media (max-width:1024px) {
    .benefits-carousel {
        position: relative;
    }
    .eac-benefits__banner {
        margin: 0 35px 50px 35px;
    }
    .banner__btn {
    width:100%;
    }
        .benefits-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        gap: 16px;
        margin: 0 0 -14px; /* esconde a “trilha” da barra */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/old Edge */
    }

        .benefits-grid::-webkit-scrollbar {
            width: 0;
            height: 0;
        }
    /* Chrome/Safari */

    .benefit-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .benefit-card__dot {
        display: none !important;
    }

    /* DOTS */
    .benefits-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 70px;
        visibility: visible; /* começa invisível, só aparece se houver overflow */
    }

        .benefits-dots .benefits-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #D4D4D4;
            border: 0;
        }

            .benefits-dots .benefits-dot.is-active {
                background: var(--azul-abrinq);
                transform: scale(1.15);
            }

    /* SETAS – posicionadas no meio do card, um pouco acima dos dots */
    .benefits-arrow {
        position: absolute;
        top: calc(50% - 24px); /* ← sobe/abaixa aqui */
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,.15);
        display: grid;
        place-items: center;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    }

    .benefits-prev {
        left: 0px;
    }

    .benefits-next {
        right: 0px;
    }

    .benefits-arrow:disabled {
        opacity: .35;
        cursor: default;
    }
}

/* opcional: setas somem fora do mobile */
@media (min-width:1024px) {
    .benefits-arrow {
        display: none;
    }


}


