/* =============================================================================
   Clube Jaó — site público
   Fiel ao design system (Paginas Jaó Estáticas). Fonte: Gabarito (Google Fonts).
   Estrutura: base/tokens → utilitários → header/footer → seções por página
   (hm- home · ab- quem somos · ev- eventos · evs- evento · md- modalidade)
   ========================================================================== */

:root {
    --laranja: #ff6600;
    --amarelo: #fcae02;
    --noite: #16204A;
    --noite-escura: #0f1733;
    --verde: #354729;
    --verde-escuro: #243019;
    --azul: #20b0e5;
    --indigo: #33458f;
    --lima: #ccff33;
    --areia: #F7F4ED;
    --tinta: #1C2118;
    --grafite: #3A3F36;
    --cinza: #5A5F55;
    --cinza-claro: #8A8F84;
    --borda: #E4DFD3;
    --borda-input: #D8D2C4;
    --azul-claro: #bfe9fa;
    --amarelo-claro: #fff77a;
    --indigo-claro: #bcd0ff;
    --bg-azul: #e8f6fd;
    --bg-verde: #eef4e6;
    --bg-laranja: #fff1e6;
    --bg-indigo: #eaeefb;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--areia);
    color: var(--tinta);
    font-family: Gabarito, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

a { color: var(--laranja); text-decoration: none; }
a:hover { color: var(--amarelo); }
img { max-width: 100%; }
button { font-family: inherit; }

/* Animações do design */
@keyframes sobe {
    from { opacity: 0; transform: translateY(0.5em); }
    to { opacity: 1; transform: none; }
}

.ab-rise { display: inline-block; opacity: 0; animation: sobe .9s cubic-bezier(.2, 0, .2, 1) forwards; }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2, 0, .2, 1), transform .7s cubic-bezier(.2, 0, .2, 1);
}
[data-reveal].vis { opacity: 1; transform: none; }

.trilho { scrollbar-width: none; }
.trilho::-webkit-scrollbar { display: none; }

/* ---------------------------------------------------------------------------
   Utilitários
--------------------------------------------------------------------------- */
.shell { max-width: 1180px; margin: 0 auto; }

.section { padding: 88px 32px; }
.section-80 { padding: 80px 32px; }
.section--sand { background: var(--areia); }
.section--white { background: #fff; }
.section--bordered { border-top: 1px solid var(--borda); }

.kicker { font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.kicker--orange { color: var(--laranja); }
.kicker--gold { color: var(--amarelo); }
.kicker--lime { color: var(--lima); }
.kicker--blue { color: var(--azul); }
.kicker--white-soft { color: rgba(255, 255, 255, 0.8); }

.sec-title { margin: 0; font-weight: 800; }
.sec-title--md { font-size: clamp(34px, 4.2vw, 46px); letter-spacing: -0.025em; line-height: 1.05; }
.sec-title--lg { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -0.03em; line-height: 1.02; }
.sec-title--xl { font-size: clamp(38px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.02; }
.sec-title--balance { text-wrap: balance; }

.sec-head { display: flex; gap: 48px; align-items: flex-end; flex-wrap: wrap; }
.sec-head__main { display: flex; flex-direction: column; gap: 12px; flex: 1 1 520px; }
.sec-head__main--wide { gap: 14px; flex: 1 1 560px; }
.sec-head__text { margin: 0; flex: 1 1 340px; font-size: 17px; line-height: 1.65; color: var(--cinza); text-wrap: pretty; }
.sec-head__text--tight { flex: none; }
.sec-head__side { flex: 1 1 340px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

/* Botões */
.btn { display: inline-block; font-weight: 700; border-radius: 6px; text-align: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.btn--sm { font-size: 14px; padding: 11px 18px; }
.btn--md { font-size: 17px; padding: 16px 30px; }
.btn--lg { font-size: 18px; padding: 17px 32px; }
.btn--xl { font-size: 19px; padding: 18px 36px; }

.btn--primary { color: #fff; background: var(--laranja); }
.btn--primary:hover { color: #16204A; background: var(--amarelo); }

.btn--primary-outline { color: #fff; background: var(--laranja); border: 2px solid var(--laranja); }
.btn--primary-outline:hover { background: var(--amarelo); border-color: var(--amarelo); color: var(--noite); }
.btn--primary-outline.btn--xl { padding: 18px 36px; }
.btn--primary-outline.btn--lg { padding: 17px 32px; }

.btn--ghost-light { color: #fff; background: transparent; border: 2px solid rgba(255, 255, 255, 0.6); }
.btn--ghost-light:hover { color: #fff; background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn--ghost-light.btn--md { font-size: 15px; padding: 13px 22px; border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost-light.btn--lg { padding: 15px 30px; border-color: rgba(255, 255, 255, 0.7); }
.btn--ghost-light.btn--xl { padding: 18px 36px; }

.btn--white { color: var(--noite); background: #fff; }
.btn--white:hover { color: #fff; background: var(--noite); }

.btn--lime { color: var(--verde); background: var(--lima); flex: none; }
.btn--lime:hover { color: var(--verde); background: #fff; }

.btn--navy-outline { color: var(--noite); border: 2px solid var(--noite); background: transparent; }
.btn--navy-outline:hover { color: #fff; background: var(--noite); }

/* ---------------------------------------------------------------------------
   Header + mega menu
--------------------------------------------------------------------------- */
.site-header {
    background: #fff;
    color: var(--tinta);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--borda);
}

.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-header__brand { display: flex; align-items: center; color: var(--tinta); }
.site-header__logo { height: 38px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.site-nav__link { color: var(--grafite); }
.site-nav__link:hover { color: var(--laranja); }
.site-nav__link.is-active { color: var(--laranja); border-bottom: 2px solid var(--laranja); padding-bottom: 4px; }

.site-header__actions { display: flex; align-items: center; gap: 16px; flex: none; white-space: nowrap; }
.site-header__member { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--noite); }
.site-header__member svg { flex: none; }

.site-header__burger { display: none; width: 42px; height: 42px; border: 1.5px solid var(--borda); border-radius: 7px; background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.site-header__burger span { display: block; width: 18px; height: 2px; background: var(--noite); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega menu */
.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    color: var(--tinta);
    border-top: 1px solid var(--borda);
    box-shadow: 0 24px 48px rgba(22, 32, 74, 0.16);
}

.mega__grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 32px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.mega-group { display: flex; flex-direction: column; gap: 12px; }
.mega-group__title { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding-bottom: 10px; border-bottom: 1px solid var(--borda); }
.mega-group--aquaticos .mega-group__title { color: var(--azul); }
.mega-group--raquetes .mega-group__title { color: var(--verde); }
.mega-group--fitness .mega-group__title { color: var(--laranja); }
.mega-group--quadras .mega-group__title { color: var(--indigo); }
.mega-group__items { display: flex; flex-direction: column; gap: 4px; }

.mega-item { display: flex; align-items: center; gap: 14px; padding: 10px 12px; margin: 0 -12px; border-radius: 8px; color: var(--tinta); }
.mega-item:hover { background: var(--areia); color: var(--tinta); }
.mega-item__icon { width: 42px; height: 42px; flex: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mega-group--aquaticos .mega-item__icon { background: var(--bg-azul); color: var(--azul); }
.mega-group--raquetes .mega-item__icon { background: var(--bg-verde); color: var(--verde); }
.mega-group--fitness .mega-item__icon { background: var(--bg-laranja); color: var(--laranja); }
.mega-group--quadras .mega-item__icon { background: var(--bg-indigo); color: var(--indigo); }
.mega-item__text { display: flex; flex-direction: column; gap: 2px; }
.mega-item__title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.mega-item__subtitle { font-size: 14px; color: var(--cinza-claro); }

.mega__footer { border-top: 1px solid var(--borda); margin-top: 28px; background: var(--areia); }
.mega__footer-inner { max-width: 1180px; margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mega__footer-note { font-size: 15px; color: var(--cinza); }
.mega__footer-link { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--laranja); }
.mega__footer-link svg { flex: none; }

/* Menu mobile */
.mobile-menu { position: absolute; left: 0; right: 0; top: 76px; background: #fff; border-top: 1px solid var(--borda); box-shadow: 0 24px 48px rgba(22, 32, 74, 0.16); padding: 24px 20px 28px; max-height: calc(100vh - 76px); overflow-y: auto; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a { padding: 12px 0; font-size: 17px; font-weight: 700; color: var(--tinta); border-bottom: 1px solid var(--borda); }
.mobile-menu__groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px 0; }
.mobile-menu__group { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__group-title { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 0; }
.mobile-menu__group-title.mega-group--aquaticos { color: var(--azul); }
.mobile-menu__group-title.mega-group--raquetes { color: var(--verde); }
.mobile-menu__group-title.mega-group--fitness { color: var(--laranja); }
.mobile-menu__group-title.mega-group--quadras { color: var(--indigo); }
.mobile-menu__item { padding: 5px 0; font-size: 15px; color: var(--grafite); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.mobile-menu__actions .btn { font-size: 16px; padding: 14px 24px; }
.mobile-menu__member { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 15px; font-weight: 600; color: var(--noite); padding: 10px 0; }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
.site-footer { background: var(--noite); color: #fff; padding: 64px 32px 32px; position: relative; overflow: hidden; }
.site-footer__sun { position: absolute; right: -110px; top: -110px; width: 380px; height: 380px; opacity: 0.07; pointer-events: none; }
.site-footer__inner { position: relative; max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 18px; }
.site-footer__logo { height: 42px; width: auto; display: block; align-self: flex-start; }
.site-footer__about { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); max-width: 300px; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social-link { width: 40px; height: 40px; border: 1.5px solid rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.85); border-radius: 7px; }
.site-footer__social-link:hover { border-color: var(--laranja); color: var(--laranja); }
.site-footer__col { display: flex; flex-direction: column; gap: 14px; }
.site-footer__col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amarelo); }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 16px; }
.site-footer__links a { color: rgba(255, 255, 255, 0.78); }
.site-footer__links a:hover { color: #fff; }
.site-footer__links--contact { color: rgba(255, 255, 255, 0.78); line-height: 1.5; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255, 255, 255, 0.5); }

/* ---------------------------------------------------------------------------
   CTA banner (laranja)
--------------------------------------------------------------------------- */
.cta-banner { background: var(--laranja); color: #fff; border-radius: 8px; padding: 56px 48px; }
.cta-banner__row { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-banner__content { display: flex; flex-direction: column; gap: 14px; flex: 1 1 420px; max-width: 560px; }
.cta-banner__title { margin: 0; font-size: clamp(36px, 4.4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; text-wrap: balance; }
.cta-banner__text { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }
.cta-banner__actions { display: flex; flex-direction: column; gap: 12px; flex: none; align-items: stretch; }

/* ---------------------------------------------------------------------------
   Home — hero
--------------------------------------------------------------------------- */
.hm-hero { position: relative; overflow: hidden; min-height: 640px; display: flex; align-items: flex-end; background: var(--noite); }
.hm-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 32, 74, 0.62) 0%, rgba(22, 32, 74, 0.22) 55%, rgba(22, 32, 74, 0) 100%); }
.hm-hero__sun { position: absolute; right: -90px; bottom: -90px; width: 420px; height: 420px; opacity: 0.14; pointer-events: none; }
.hm-hero__inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 96px 32px 72px; width: 100%; display: flex; flex-direction: column; gap: 28px; }
.hm-hero__copy { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.hm-hero__title { margin: 0; font-size: 76px; line-height: 0.98; font-weight: 800; letter-spacing: -0.03em; color: #fff; text-wrap: balance; }
.hm-hero__subtitle { margin: 0; font-size: 22px; line-height: 1.5; color: rgba(255, 255, 255, 0.88); max-width: 560px; text-wrap: pretty; }
.hm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Home — letreiro */
.hm-marquee { background: var(--laranja); min-height: 132px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.hm-marquee__ghost { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hm-marquee__ghost span { font-size: 118px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: rgba(255, 255, 255, 0.14); white-space: nowrap; }
.hm-marquee__words { position: relative; display: flex; align-items: center; gap: 18px; padding: 40px 32px; }
.hm-marquee__words > span:not(.hm-marquee__dot) { font-size: 30px; font-weight: 800; letter-spacing: 0.02em; color: #fff; line-height: 1; }
.hm-marquee__dot { width: 9px; height: 9px; border-radius: 999px; background: var(--amarelo-claro); display: block; flex: none; }

/* Home — modalidades (abas + bento) */
.hm-modalidades { display: flex; flex-direction: column; gap: 36px; }

.hm-tabs { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hm-tab {
    font-size: 16px; font-weight: 700; letter-spacing: -0.01em; padding: 13px 22px;
    display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; cursor: pointer;
    transition: background .15s ease; background: #fff; border: 1.5px solid var(--borda); color: var(--grafite);
}
.hm-tab svg { flex: none; }
.hm-tab--aquaticos.is-active { background: var(--azul); border-color: var(--azul); color: #fff; }
.hm-tab--raquetes.is-active { background: var(--verde); border-color: var(--verde); color: #fff; }
.hm-tab--fitness.is-active { background: var(--laranja); border-color: var(--laranja); color: #fff; }
.hm-tab--quadras.is-active { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.hm-tabs__all { margin-left: auto; font-size: 16px; font-weight: 700; color: var(--laranja); }

.hm-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 262px 238px;
    grid-template-areas: 'destaque menor titulo' 'destaque largo largo';
    gap: 20px;
}
.hm-bento__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 32, 74, 0) 30%, rgba(22, 32, 74, 0.82) 100%); }
.hm-bento__shade--destaque { background: linear-gradient(180deg, rgba(22, 32, 74, 0) 35%, rgba(22, 32, 74, 0.8) 100%); }
.hm-bento__pill { background: rgba(255, 255, 255, 0.18); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.hm-bento__pill--sm { align-self: flex-start; padding: 6px 12px; font-size: 12px; letter-spacing: 0; }
.hm-bento__arrow { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); display: flex; align-items: center; justify-content: center; }
.hm-bento__arrow--static { position: static; flex: none; }

.hm-bento__destaque { grid-area: destaque; position: relative; display: flex; align-items: flex-end; border-radius: 8px; overflow: hidden; color: #fff; background: var(--noite); }
.hm-bento__destaque:hover { color: #fff; }
.hm-bento__destaque > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-bento__destaque-body { position: relative; padding: 36px; display: flex; flex-direction: column; gap: 14px; width: 100%; }
.hm-bento__meta { display: flex; align-items: center; gap: 10px; }
.hm-bento__group { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.hm-bento__group svg { flex: none; }
.hm-bento--aquaticos .hm-bento__group, .hm-bento--aquaticos .hm-bento__link { color: var(--azul-claro); }
.hm-bento--raquetes .hm-bento__group, .hm-bento--raquetes .hm-bento__link { color: var(--lima); }
.hm-bento--fitness .hm-bento__group, .hm-bento--fitness .hm-bento__link { color: var(--amarelo-claro); }
.hm-bento--quadras .hm-bento__group, .hm-bento--quadras .hm-bento__link { color: var(--indigo-claro); }
.hm-bento__destaque-title { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.hm-bento__destaque-text { font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); max-width: 420px; }
.hm-bento__cta { align-self: flex-start; margin-top: 6px; font-size: 16px; font-weight: 700; color: var(--noite); background: #fff; padding: 13px 24px; border-radius: 999px; }

.hm-bento__menor { grid-area: menor; position: relative; display: flex; align-items: flex-end; border-radius: 8px; overflow: hidden; color: #fff; background: var(--noite); }
.hm-bento__menor:hover { color: #fff; }
.hm-bento__menor > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-bento__menor-body { position: relative; padding: 24px; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.hm-bento__menor-title { font-size: 24px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.hm-bento__link { font-size: 15px; font-weight: 700; }

.hm-bento__titulo { grid-area: titulo; position: relative; overflow: hidden; border-radius: 8px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; color: #fff; }
.hm-bento--aquaticos .hm-bento__titulo { background: var(--azul); }
.hm-bento--raquetes .hm-bento__titulo { background: var(--verde); }
.hm-bento--fitness .hm-bento__titulo { background: var(--laranja); }
.hm-bento--quadras .hm-bento__titulo { background: var(--indigo); }
.hm-bento__titulo-icon { width: 56px; height: 56px; border-radius: 7px; border: 1.5px solid rgba(255, 255, 255, 0.32); display: flex; align-items: center; justify-content: center; color: #fff; }
.hm-bento__titulo-kicker { position: relative; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
.hm-bento__titulo-body { display: flex; flex-direction: column; gap: 8px; }
.hm-bento__titulo-chamada { font-size: 30px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.hm-bento__titulo-resumo { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.82); }

.hm-bento__largo { grid-area: largo; position: relative; display: flex; align-items: flex-end; border-radius: 8px; overflow: hidden; color: #fff; background: var(--noite); }
.hm-bento__largo:hover { color: #fff; }
.hm-bento__largo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-bento__largo-body { position: relative; padding: 24px 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; width: 100%; }
.hm-bento__largo-copy { display: flex; flex-direction: column; gap: 8px; }
.hm-bento__largo-title { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.hm-bento__largo-text { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); max-width: 340px; }

/* Home — estrutura */
.hm-estrutura { position: relative; overflow: hidden; padding: 104px 32px 120px; background: var(--verde); color: #fff; }
.hm-estrutura__bg { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; display: block; opacity: 0.85; will-change: transform; }
.hm-estrutura__tint { position: absolute; inset: 0; background: rgba(31, 44, 22, 0.62); }
.hm-estrutura__gradient { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31, 44, 22, 0.72) 0%, rgba(31, 44, 22, 0.3) 55%, rgba(31, 44, 22, 0.12) 100%); }
.hm-estrutura__inner { position: relative; display: flex; flex-direction: column; gap: 56px; }

.hm-estrutura__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.hm-estrutura__card { position: relative; display: block; height: 460px; border-radius: 8px; overflow: hidden; color: #fff; background: var(--verde-escuro); will-change: transform; }
.hm-estrutura__card:hover { color: #fff; }
.hm-estrutura__card--down-lg { margin-top: 56px; }
.hm-estrutura__card--down-sm { margin-top: 24px; }
.hm-estrutura__card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.04); transition: transform .7s ease, opacity .5s ease; opacity: 0.92; }
.hm-estrutura__card:hover .hm-estrutura__card-img { transform: scale(1.14); opacity: 1; }
.hm-estrutura__card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 40, 20, 0) 0%, rgba(28, 40, 20, 0.25) 40%, rgba(31, 44, 22, 0.92) 100%); }
.hm-estrutura__card-body { position: relative; height: 100%; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; }
.hm-estrutura__card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hm-estrutura__card-title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.hm-estrutura__card-arrow { transition: transform .35s ease; }
.hm-estrutura__card:hover .hm-estrutura__card-arrow { transform: translate(4px, -4px); }
.hm-estrutura__card-text { font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }

/* Home — eventos */
.hm-eventos { display: flex; flex-direction: column; gap: 44px; }
.hm-eventos__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(200px, 0.85fr); gap: 20px; }

.hm-event-card { background: #fff; border: 1px solid var(--borda); display: flex; flex-direction: column; color: var(--tinta); border-radius: 8px; overflow: hidden; }
.hm-event-card:hover { border-color: var(--laranja); color: var(--tinta); }
.hm-event-card__media { position: relative; }
.hm-event-card__media img { width: 100%; height: 220px; object-fit: cover; display: block; }
.hm-event-card__date { position: absolute; left: 18px; top: 18px; pointer-events: none; background: var(--laranja); color: #fff; border-radius: 6px; padding: 10px 14px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.hm-event-card__day { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.hm-event-card__month { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.hm-event-card__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hm-event-card__kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--laranja); }
.hm-event-card__title { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.hm-event-card__text { font-size: 16px; line-height: 1.6; color: var(--cinza); }
.hm-event-card__more { margin-top: auto; padding-top: 18px; font-size: 16px; font-weight: 700; color: var(--laranja); }

.hm-eventos__calendar { background: var(--noite); color: #fff; padding: 24px; display: flex; flex-direction: column; gap: 10px; border-radius: 8px; }
.hm-eventos__calendar-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amarelo); }
.hm-eventos__calendar-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.hm-eventos__calendar-text { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }
.hm-eventos__calendar-cta { margin-top: auto; align-self: flex-start; }

/* Home — associação */
.hm-associacao { padding: 88px 32px; background: var(--noite); color: #fff; position: relative; overflow: hidden; }
.hm-associacao__grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.hm-associacao__copy { display: flex; flex-direction: column; gap: 24px; }
.hm-associacao__title { margin: 0; font-size: clamp(36px, 4.4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; text-wrap: balance; }
.hm-associacao__text { margin: 0; font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); max-width: 520px; text-wrap: pretty; }
.hm-associacao__perks { display: flex; flex-direction: column; }
.hm-associacao__perk { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); display: flex; gap: 20px; align-items: center; }
.hm-associacao__perk-icon { width: 52px; height: 52px; flex: none; border-radius: 7px; border: 1.5px solid rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); display: flex; align-items: center; justify-content: center; }
.hm-associacao__perk-text { font-size: 17px; line-height: 1.5; color: rgba(255, 255, 255, 0.88); }
.hm-associacao__cta { align-self: flex-start; }

.hm-associacao__aside { display: flex; flex-direction: column; gap: 16px; }
.hm-associacao__form { background: #fff; color: var(--tinta); padding: 32px; display: flex; flex-direction: column; gap: 18px; border-radius: 8px; overflow: hidden; }
.hm-associacao__form-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.hm-field { display: flex; flex-direction: column; gap: 8px; }
.hm-field__label { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cinza); }
.hm-field__input { font-family: inherit; font-size: 17px; width: 100%; min-width: 0; padding: 15px 16px; border: 1.5px solid var(--borda-input); background: #fff; color: var(--tinta); outline: none; border-radius: 6px; }
.hm-field__input:focus { border-color: var(--laranja); }
.hm-associacao__submit { font-family: inherit; font-size: 18px; font-weight: 700; color: #fff; background: var(--laranja); border: none; padding: 18px 32px; cursor: pointer; border-radius: 6px; transition: background .2s ease; }
.hm-associacao__submit:hover { background: var(--noite); }

.hm-associacao__member { border: 1px solid rgba(255, 255, 255, 0.22); padding: 28px; display: flex; flex-direction: column; gap: 10px; border-radius: 8px; overflow: hidden; }
.hm-associacao__member-title { font-size: 20px; font-weight: 700; }
.hm-associacao__member-text { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }
.hm-associacao__member-cta { align-self: flex-start; margin-top: 6px; font-size: 16px; padding: 14px 26px; }

/* Home — o clube */
.hm-clube { display: flex; flex-direction: column; gap: 44px; }
.hm-clube__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: stretch; }
.hm-clube__photo { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }
.hm-clube__cards { display: flex; flex-direction: column; gap: 16px; }
.hm-clube__card { background: #fff; border: 1px solid var(--borda); padding: 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; border-radius: 8px; overflow: hidden; }
.hm-clube__card--laranja { border-left: 6px solid var(--laranja); }
.hm-clube__card--azul { border-left: 6px solid var(--azul); }
.hm-clube__card--verde { border-left: 6px solid var(--verde); }
.hm-clube__card-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.hm-clube__card-text { font-size: 16px; line-height: 1.6; color: var(--cinza); }

/* ---------------------------------------------------------------------------
   Quem somos
--------------------------------------------------------------------------- */
.ab-hero { position: relative; overflow: hidden; background: var(--noite); color: #fff; padding: 88px 0 0; }
.ab-hero__grid { padding: 0 32px 72px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr); gap: 48px; align-items: center; }
.ab-hero__copy { display: flex; flex-direction: column; gap: 30px; }
.ab-hero__title { margin: 0; font-size: clamp(46px, 6.4vw, 92px); line-height: 0.92; font-weight: 800; letter-spacing: -0.04em; display: flex; flex-wrap: wrap; gap: 0 0.24em; }
.ab-hero__title-accent { color: var(--laranja); }
.ab-hero__text { margin: 0; font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); max-width: 460px; text-wrap: pretty; }
.ab-hero__photo { width: 100%; height: 440px; object-fit: cover; display: block; border-radius: 8px; }

.ab-essencia { display: flex; flex-direction: column; gap: 40px; }
.ab-essencia__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: end; }
.ab-essencia__lead { margin: 0; font-size: 17px; line-height: 1.7; color: var(--grafite); text-wrap: pretty; }
.ab-essencia__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 210px; gap: 16px; }
.ab-essencia__feature { grid-column: span 2; grid-row: span 2; position: relative; border-radius: 8px; overflow: hidden; background: var(--noite); }
.ab-essencia__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-essencia__feature-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(22, 32, 74, 0) 45%, rgba(22, 32, 74, 0.88) 100%); }
.ab-essencia__feature-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; color: #fff; }
.ab-essencia__feature-title { font-size: 30px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.ab-essencia__laranja { grid-column: span 2; background: var(--laranja); color: #fff; border-radius: 8px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.ab-essencia__card-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); }
.ab-essencia__laranja-title { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.ab-essencia__photo { position: relative; border-radius: 8px; overflow: hidden; background: var(--verde); }
.ab-essencia__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-essencia__nota { background: var(--areia); border-radius: 8px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.ab-essencia__nota-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cinza-claro); }
.ab-essencia__nota-title { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; color: var(--noite); }

.ab-historia { background: var(--noite); color: #fff; }
.ab-historia__inner { display: flex; flex-direction: column; gap: 56px; }
.ab-timeline { position: relative; display: flex; flex-direction: column; padding-left: 44px; }
.ab-timeline__track { position: absolute; left: 5px; top: 56px; bottom: 56px; width: 2px; background: rgba(255, 255, 255, 0.18); border-radius: 2px; }
.ab-timeline__progress { width: 100%; height: 0%; background: linear-gradient(var(--amarelo), var(--laranja)); border-radius: 2px; }
.ab-timeline__item { position: relative; display: grid; grid-template-columns: 110px minmax(0, 1.3fr) minmax(0, 0.9fr); gap: 40px; align-items: start; padding: 44px 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.ab-timeline__item--last { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.ab-timeline__dot { position: absolute; left: -44px; top: 52px; width: 12px; height: 12px; border-radius: 999px; background: var(--noite); border: 2px solid rgba(255, 255, 255, 0.35); box-sizing: border-box; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.ab-timeline__dot.is-active { background: var(--laranja); border-color: var(--laranja); transform: scale(1.25); }
.ab-timeline__year { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--amarelo); line-height: 1; }
.ab-timeline__year-extra { font-size: 24px; }
.ab-timeline__copy { display: flex; flex-direction: column; gap: 12px; }
.ab-timeline__title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.ab-timeline__text { margin: 0; font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.78); max-width: 480px; text-wrap: pretty; }
.ab-timeline__photo { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: 8px; will-change: transform; }

.ab-missao { display: flex; flex-direction: column; gap: 40px; }
.ab-missao__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ab-missao__head .sec-head__main { flex: none; gap: 14px; }
.ab-missao__note { font-size: 15px; color: var(--cinza-claro); max-width: 260px; line-height: 1.5; }
.ab-missao__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.ab-missao__card { background: #fff; border-radius: 8px; padding: 34px; display: flex; flex-direction: column; gap: 14px; min-height: 270px; }
.ab-missao__card--laranja { background: var(--laranja); }
.ab-missao__card-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); }
.ab-missao__card-kicker--laranja { color: var(--laranja); }
.ab-missao__card-title { font-size: 29px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; color: var(--tinta); }
.ab-missao__card--laranja .ab-missao__card-title { color: #fff; }
.ab-missao__card-text { margin: 0; margin-top: auto; font-size: 16px; line-height: 1.65; color: var(--cinza); }
.ab-missao__card--laranja .ab-missao__card-text { color: rgba(255, 255, 255, 0.78); }

.ab-galeria { padding: 88px 0; background: var(--areia); overflow: hidden; }
.ab-galeria__head { padding: 0 32px; display: flex; gap: 48px; align-items: flex-end; flex-wrap: wrap; }
.ab-galeria__head .sec-head__main { gap: 12px; }
.ab-galeria__head .sec-head__text { flex: 1 1 320px; }
.ab-galeria__window { margin-top: 44px; overflow: hidden; }
.ab-galeria__strip { display: flex; align-items: center; gap: 20px; width: max-content; padding: 0 32px; will-change: transform; }
.ab-galeria__img { flex: none; object-fit: cover; display: block; border-radius: 8px; }
.ab-galeria__img--wide { width: 480px; height: 340px; }
.ab-galeria__img--tall { width: 360px; height: 420px; }
.ab-galeria__img--tall2 { width: 340px; height: 420px; }
.ab-galeria__img--mid { width: 420px; height: 340px; }
.ab-galeria__stack { flex: none; display: flex; flex-direction: column; gap: 20px; }
.ab-galeria__stack--sm { width: 300px; }
.ab-galeria__stack--md { width: 320px; }
.ab-galeria__stack img { width: 100%; height: 190px; object-fit: cover; display: block; border-radius: 8px; }

.ab-gestao { display: flex; flex-direction: column; gap: 44px; }
.ab-gestao__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.ab-gestao__card { position: relative; height: 340px; border-radius: 8px; overflow: hidden; background: var(--noite); color: #fff; }
.ab-gestao__card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.03); transition: transform .8s cubic-bezier(.2, 0, .2, 1); }
.ab-gestao__card:hover .ab-gestao__card-img { transform: scale(1.14); }
.ab-gestao__card-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(22, 32, 74, 0.1) 25%, rgba(22, 32, 74, 0.9) 100%); }
.ab-gestao__card-body { position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none; padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.ab-gestao__card-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.ab-gestao__card-text { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }

/* ---------------------------------------------------------------------------
   Eventos — lista
--------------------------------------------------------------------------- */
.ev-hero { background: var(--noite); color: #fff; padding: 76px 32px 80px; }
.ev-hero__inner { display: flex; flex-direction: column; gap: 44px; }
.ev-hero__head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: 48px; align-items: end; }
.ev-hero__copy { display: flex; flex-direction: column; gap: 26px; }
.ev-hero__title { margin: 0; font-size: clamp(46px, 6.2vw, 88px); line-height: 0.94; font-weight: 800; letter-spacing: -0.04em; display: flex; flex-wrap: wrap; gap: 0 0.24em; }
.ev-hero__title-accent { color: var(--laranja); }
.ev-hero__text { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); text-wrap: pretty; }

.ev-slider { position: relative; border-radius: 8px; overflow: hidden; background: var(--noite-escura); min-height: 440px; }
.ev-slide { position: absolute; inset: 0; display: block; color: #fff; transition: opacity .8s cubic-bezier(.2, 0, .2, 1); opacity: 0; z-index: 1; pointer-events: none; }
.ev-slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
.ev-slide:hover { color: #fff; }
.ev-slide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-slide__shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15, 23, 51, 0.93) 0%, rgba(15, 23, 51, 0.62) 52%, rgba(15, 23, 51, 0.12) 100%); }
.ev-slide__body { position: relative; padding: 44px 44px 76px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 440px; gap: 18px; }
.ev-slide__badges { display: flex; align-items: center; gap: 12px; }
.ev-slide__selo { background: var(--laranja); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 13px; border-radius: 6px; }
.ev-slide__status { font-size: 14px; font-weight: 600; color: var(--amarelo); letter-spacing: 0.04em; }
.ev-slide__copy { display: flex; flex-direction: column; gap: 12px; max-width: 620px; }
.ev-slide__title { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.ev-slide__text { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); }
.ev-slide__meta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 6px; }
.ev-slide__meta-item { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; }
.ev-slide__cta { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: #fff; background: var(--laranja); padding: 14px 24px; border-radius: 6px; }
.ev-slide__cta svg { flex: none; }

.ev-slider__nav { position: absolute; right: 32px; top: 32px; display: flex; gap: 10px; z-index: 3; }
.ev-slider__arrow { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, 0.4); background: rgba(15, 23, 51, 0.45); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.ev-slider__arrow--plain { border-color: rgba(255, 255, 255, 0.35); background: transparent; }
.ev-slider__arrow-flip { transform: rotate(180deg); }
.ev-slider__dots { position: absolute; left: 44px; bottom: 32px; display: flex; align-items: center; gap: 10px; z-index: 3; }
.ev-slider__dots button { border: none; padding: 0; cursor: pointer; height: 4px; border-radius: 999px; transition: width .35s ease, background .35s ease; width: 14px; background: rgba(255, 255, 255, 0.45); }
.ev-slider__dots button.is-active { width: 34px; background: var(--laranja); }

.ev-agenda { display: flex; flex-direction: column; gap: 36px; }
.ev-filtros { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ev-filtro { font-size: 15px; font-weight: 700; padding: 12px 22px; border-radius: 999px; cursor: pointer; background: #fff; border: 1.5px solid var(--borda); color: var(--grafite); }
.ev-filtro.is-active { background: var(--noite); border-color: var(--noite); color: #fff; }

.ev-agenda__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ev-agenda__empty { background: #fff; border: 1px dashed var(--borda-input); border-radius: 8px; padding: 56px; text-align: center; font-size: 17px; color: var(--cinza); }

.event-card { background: #fff; border: 1px solid var(--borda); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; color: var(--tinta); transition: transform .3s ease, box-shadow .3s ease; }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(28, 33, 24, 0.12); color: var(--tinta); }
.event-card__media { position: relative; height: 210px; overflow: hidden; background: var(--noite); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card__date { position: absolute; top: 16px; left: 16px; background: #fff; border-radius: 6px; padding: 8px 12px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.event-card__day { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--noite); }
.event-card__month { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cinza-claro); padding-top: 3px; }
.event-card__tag { position: absolute; top: 16px; right: 16px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 11px; border-radius: 6px; }
.event-card__tag--esportivo { background: var(--azul); }
.event-card__tag--familia { background: var(--laranja); }
.event-card__tag--social { background: var(--noite); }
.event-card__tag--infantil { background: #5d8c3a; }
.event-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__title { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.event-card__text { font-size: 16px; line-height: 1.6; color: var(--cinza); }
.event-card__footer { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.event-card__when { font-size: 14px; font-weight: 600; color: var(--cinza-claro); }
.event-card__more { font-size: 15px; font-weight: 700; color: var(--laranja); }

.ev-anteriores { background: var(--noite); color: #fff; position: relative; overflow: hidden; }
.ev-anteriores__inner { position: relative; display: flex; flex-direction: column; gap: 36px; }
.ev-anteriores__head { display: flex; gap: 48px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.ev-anteriores__head .sec-head__main { flex: none; }
.ev-anteriores__note { font-size: 16px; color: rgba(255, 255, 255, 0.7); max-width: 320px; line-height: 1.55; }
.ev-anteriores__wrap { display: flex; flex-direction: column; gap: 16px; }
.ev-trilho { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 4px; }
.ev-past-card { position: relative; flex: 0 0 280px; scroll-snap-align: start; display: block; height: 260px; border-radius: 8px; overflow: hidden; color: #fff; }
.ev-past-card:hover { color: #fff; }
.ev-past-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.75); transition: filter .5s ease, transform .7s ease; }
.ev-past-card:hover .ev-past-card__img { filter: saturate(1); transform: scale(1.07); }
.ev-past-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 23, 51, 0.1) 40%, rgba(15, 23, 51, 0.9) 100%); }
.ev-past-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; display: flex; flex-direction: column; gap: 5px; }
.ev-past-card__when { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amarelo); }
.ev-past-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.ev-anteriores__controls { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ev-anteriores__arrows { display: flex; gap: 10px; }

/* ---------------------------------------------------------------------------
   Evento — página individual
--------------------------------------------------------------------------- */
.evs-hero { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: flex-end; background: var(--noite); }
.evs-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.evs-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 23, 51, 0.55) 0%, rgba(15, 23, 51, 0.3) 35%, rgba(15, 23, 51, 0.94) 100%); }
.evs-hero__inner { position: relative; padding: 52px 32px 56px; width: 100%; display: flex; flex-direction: column; gap: 24px; color: #fff; }
.evs-hero__back { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.evs-hero__back svg { flex: none; }
.evs-hero__badges { display: flex; align-items: center; gap: 12px; }
.evs-selo { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 13px; border-radius: 6px; }
.evs-selo--esportivo { background: var(--azul); }
.evs-selo--familia { background: var(--laranja); }
.evs-selo--social { background: var(--noite); }
.evs-selo--infantil { background: #5d8c3a; }
.evs-selo--soft { background: rgba(255, 255, 255, 0.16); }
.evs-hero__title { margin: 0; font-size: clamp(42px, 5.6vw, 80px); line-height: 0.96; font-weight: 800; letter-spacing: -0.04em; max-width: 820px; text-wrap: balance; display: block; }
.evs-hero__text { margin: 0; font-size: 20px; line-height: 1.55; color: rgba(255, 255, 255, 0.88); max-width: 620px; text-wrap: pretty; display: block; }
.evs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 6px; }

.evs-info { background: #fff; border-bottom: 1px solid var(--borda); }
.evs-info__grid { padding: 28px 32px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.evs-info__item { display: flex; gap: 14px; align-items: flex-start; }
.evs-info__icon { flex: none; width: 42px; height: 42px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.evs-info__icon--blue { background: var(--bg-azul); color: var(--azul); }
.evs-info__icon--orange { background: var(--bg-laranja); color: var(--laranja); }
.evs-info__copy { display: flex; flex-direction: column; gap: 2px; }
.evs-info__label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cinza-claro); }
.evs-info__value { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.evs-sobre { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); gap: 48px; align-items: start; }
.evs-sobre__copy { display: flex; flex-direction: column; gap: 22px; }
.evs-sobre__title { margin: 0; font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; max-width: 640px; }
.evs-sobre__text { margin: 0; font-size: 18px; line-height: 1.7; color: var(--grafite); max-width: 660px; text-wrap: pretty; }

.evs-inscricao { background: var(--noite); color: #fff; border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.evs-inscricao__head { display: flex; flex-direction: column; gap: 6px; }
.evs-inscricao__kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amarelo); }
.evs-inscricao__title { font-size: 30px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.evs-inscricao__rows { display: flex; flex-direction: column; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.evs-inscricao__row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); font-size: 16px; }
.evs-inscricao__row-label { color: rgba(255, 255, 255, 0.7); }
.evs-inscricao__row-value { font-weight: 700; }
.evs-inscricao__row-value--gold { color: var(--amarelo); }
.evs-inscricao__cta { font-size: 17px; padding: 16px 24px; }
.evs-inscricao__note { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.68); }

.evs-programacao { display: flex; flex-direction: column; gap: 34px; }
.evs-programacao__head { display: flex; gap: 48px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.evs-programacao__head .sec-head__main { flex: none; }
.evs-programacao__note { font-size: 15px; color: var(--cinza-claro); max-width: 280px; line-height: 1.5; }
.evs-timeline { position: relative; display: flex; flex-direction: column; padding-left: 44px; }
.evs-timeline__track { position: absolute; left: 5px; top: 44px; bottom: 44px; width: 2px; background: var(--borda); border-radius: 2px; }
.evs-timeline__progress { width: 100%; height: 0%; background: linear-gradient(var(--amarelo), var(--laranja)); border-radius: 2px; }
.evs-timeline__item { position: relative; display: grid; grid-template-columns: 130px minmax(0, 1fr) 180px; gap: 28px; align-items: baseline; padding: 26px 0; border-top: 1px solid var(--borda); }
.evs-timeline__dot { position: absolute; left: -44px; top: 34px; width: 12px; height: 12px; border-radius: 999px; background: #fff; border: 2px solid var(--borda-input); box-sizing: border-box; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.evs-timeline__dot.is-active { background: var(--laranja); border-color: var(--laranja); transform: scale(1.25); }
.evs-timeline__day { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--laranja); }
.evs-timeline__copy { display: flex; flex-direction: column; gap: 5px; }
.evs-timeline__title { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.evs-timeline__text { font-size: 16px; line-height: 1.55; color: var(--cinza); }
.evs-timeline__time { font-size: 15px; font-weight: 600; color: var(--cinza-claro); }

.evs-regras { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
.evs-regras__card { background: #fff; border: 1px solid var(--borda); border-radius: 8px; padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.evs-regras__kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cinza-claro); }
.evs-regras__title { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.evs-regras__list { display: flex; flex-direction: column; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--grafite); }
.evs-regras__item { display: flex; gap: 12px; }
.evs-regras__bullet { flex: none; width: 7px; height: 7px; border-radius: 999px; background: var(--laranja); margin-top: 8px; }
.evs-regras__link { align-self: flex-start; margin-top: auto; font-size: 16px; font-weight: 700; color: var(--laranja); }

.evs-comissao { position: relative; border-radius: 8px; overflow: hidden; background: var(--noite); min-height: 380px; color: #fff; }
.evs-comissao__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.evs-comissao__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 23, 51, 0.15) 40%, rgba(15, 23, 51, 0.9) 100%); }
.evs-comissao__body { position: relative; height: 100%; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; }
.evs-comissao__kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amarelo); }
.evs-comissao__title { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.evs-comissao__text { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); max-width: 400px; }

.evs-relacionados { display: flex; flex-direction: column; gap: 30px; }
.evs-relacionados__head { display: flex; gap: 40px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.evs-relacionados__title { margin: 0; font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; }
.evs-relacionados__all { font-size: 16px; font-weight: 700; color: var(--laranja); }
.evs-relacionados__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.evs-rel-card { background: var(--areia); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; color: var(--tinta); }
.evs-rel-card:hover { color: var(--tinta); }
.evs-rel-card__img { width: 100%; height: 190px; object-fit: cover; display: block; }
.evs-rel-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.evs-rel-card__when { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cinza-claro); }
.evs-rel-card__title { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.evs-rel-card__more { font-size: 15px; font-weight: 700; color: var(--laranja); padding-top: 4px; }

/* ---------------------------------------------------------------------------
   Modalidade
--------------------------------------------------------------------------- */
.md-hero { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; background: var(--noite); }
.md-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.md-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 32, 74, 0.78) 0%, rgba(22, 32, 74, 0.38) 58%, rgba(22, 32, 74, 0.08) 100%); }
.md-hero__inner { position: relative; padding: 88px 32px 64px; width: 100%; display: flex; flex-direction: column; gap: 26px; }
.md-hero__group { display: flex; align-items: center; gap: 14px; }
.md-hero__icon { width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex: none; color: #fff; }
.md-hero__icon--aquaticos { background: var(--azul); }
.md-hero__icon--raquetes { background: var(--verde); }
.md-hero__icon--fitness { background: var(--laranja); }
.md-hero__icon--quadras { background: var(--indigo); }
.md-kicker--aquaticos { color: var(--azul-claro); }
.md-kicker--raquetes { color: var(--lima); }
.md-kicker--fitness { color: var(--amarelo-claro); }
.md-kicker--quadras { color: var(--indigo-claro); }
.md-hero__copy { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.md-hero__title { margin: 0; font-size: 72px; line-height: 0.98; font-weight: 800; letter-spacing: -0.03em; color: #fff; text-wrap: balance; }
.md-hero__text { margin: 0; font-size: 21px; line-height: 1.5; color: rgba(255, 255, 255, 0.9); max-width: 540px; text-wrap: pretty; }
.md-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.md-hero__actions .btn--primary-outline { padding: 17px 32px; font-size: 18px; }
.md-hero__actions .btn--ghost-light { padding: 17px 32px; font-size: 18px; }

.md-estrutura { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.md-gallery { position: relative; width: 100%; height: 430px; border-radius: 8px; overflow: hidden; background: var(--noite); }
.md-gallery__strip { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.md-gallery__slide { flex: 1; position: relative; height: 100%; }
.md-gallery__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.md-gallery__shade { position: absolute; left: 0; right: 0; bottom: 0; height: 45%; pointer-events: none; background: linear-gradient(180deg, rgba(22, 32, 74, 0) 0%, rgba(22, 32, 74, 0.82) 100%); }
.md-gallery__caption { position: absolute; left: 24px; bottom: 24px; right: 150px; pointer-events: none; display: flex; flex-direction: column; gap: 4px; color: #fff; }
.md-gallery__label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul-claro); }
.md-gallery__detail { font-size: 15px; color: rgba(255, 255, 255, 0.82); }
.md-gallery__nav { position: absolute; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; }
.md-gallery__count { font-size: 14px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; margin-right: 6px; }
.md-gallery__arrow { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, 0.5); background: rgba(22, 32, 74, 0.35); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.md-gallery__arrow:hover { background: #fff; color: var(--noite); border-color: #fff; }
.md-gallery__arrow--accent { border-color: var(--azul); background: var(--azul); }

.md-estrutura__copy { display: flex; flex-direction: column; gap: 26px; }
.md-estrutura__head { display: flex; flex-direction: column; gap: 14px; }
.md-estrutura__text { margin: 0; font-size: 17px; line-height: 1.7; color: var(--grafite); text-wrap: pretty; }
.md-estrutura__features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.md-feature { border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.md-feature--blue { background: var(--bg-azul); }
.md-feature--blue .md-feature__icon { color: var(--azul); }
.md-feature--orange { background: var(--bg-laranja); }
.md-feature--orange .md-feature__icon { color: var(--laranja); }
.md-feature__title { font-size: 21px; font-weight: 800; letter-spacing: -0.015em; color: var(--indigo); }
.md-feature__text { font-size: 15px; line-height: 1.55; color: var(--cinza); }

.md-programas { display: flex; flex-direction: column; gap: 36px; }
.md-programas__grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 250px 250px; grid-template-areas: 'destaque infantil' 'destaque hidro'; gap: 20px; }
.md-programas__destaque { grid-area: destaque; position: relative; border-radius: 8px; overflow: hidden; background: var(--noite); color: #fff; }
.md-programas__destaque > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.md-programas__destaque-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(22, 32, 74, 0.05) 30%, rgba(22, 32, 74, 0.88) 100%); }
.md-programas__destaque-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.md-programas__destaque-copy { display: flex; flex-direction: column; gap: 6px; }
.md-programas__destaque-title { font-size: 34px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.md-programas__destaque-meta { font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.md-programas__destaque-text { font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); max-width: 400px; padding-top: 4px; }
.md-programas__link { flex: none; font-size: 15px; font-weight: 700; color: var(--azul-claro); }
.md-programas__infantil { grid-area: infantil; position: relative; border-radius: 8px; overflow: hidden; background: var(--noite); color: #fff; display: flex; flex-direction: column; }
.md-programas__infantil > img { width: 100%; flex: 1 1 auto; min-height: 110px; object-fit: cover; display: block; }
.md-programas__infantil-footer { flex: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--noite); }
.md-programas__sec-copy { display: flex; flex-direction: column; gap: 2px; }
.md-programas__sec-title { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.md-programas__sec-meta { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.md-programas__hidro { grid-area: hidro; position: relative; border-radius: 8px; overflow: hidden; background: var(--noite); color: #fff; }
.md-programas__hidro > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.md-programas__hidro-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(22, 32, 74, 0.05) 30%, rgba(22, 32, 74, 0.9) 100%); }
.md-programas__hidro-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.md-programas__hidro-body .md-programas__sec-copy { gap: 4px; }
.md-programas__hidro-body .md-programas__sec-meta { color: rgba(255, 255, 255, 0.78); }

.md-horarios { display: flex; flex-direction: column; gap: 30px; }
.md-horarios__head { display: flex; gap: 32px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.md-horarios__head .sec-head__main { flex: none; }
.md-horarios__tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.md-horarios__tab { font-size: 15px; font-weight: 700; padding: 12px 20px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; letter-spacing: -0.01em; background: #fff; border: 1.5px solid var(--borda); color: var(--grafite); }
.md-horarios__tab.is-active { background: var(--azul); border-color: var(--azul); color: #fff; }
.md-horarios__tab svg { flex: none; }
.md-horarios__note { font-size: 15px; color: var(--cinza-claro); }

.md-grade { background: #fff; border: 1px solid var(--borda); border-radius: 8px; overflow: hidden; }
.md-grade__header { display: grid; grid-template-columns: 150px repeat(3, minmax(0, 1fr)); background: var(--noite); color: #fff; }
.md-grade__header-cell { padding: 16px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.md-grade__row { display: grid; grid-template-columns: 150px repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--borda); }
.md-grade__time { padding: 18px 20px; font-size: 16px; font-weight: 700; color: var(--noite); font-variant-numeric: tabular-nums; }
.md-grade__cell { padding: 18px 20px; display: flex; flex-direction: column; gap: 3px; }
.md-grade__label { font-size: 16px; font-weight: 600; }
.md-grade__sub { font-size: 14px; color: var(--cinza-claro); }

.md-equipe { display: flex; flex-direction: column; gap: 32px; }
.md-equipe__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.md-prof { background: var(--areia); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.md-prof__photo { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.md-prof__body { padding: 22px; display: flex; flex-direction: column; gap: 4px; }
.md-prof__role { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul); }
.md-prof__name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.md-prof__text { font-size: 15px; line-height: 1.5; color: var(--cinza); }

/* ---------------------------------------------------------------------------
   Responsivo — tablet (≤1080px)
--------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .hm-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: 'destaque destaque' 'menor titulo' 'largo largo';
    }
    .hm-bento__destaque { min-height: 340px; }
    .hm-bento__menor { min-height: 240px; }
    .hm-bento__largo { min-height: 220px; }

    .hm-eventos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hm-associacao__grid { grid-template-columns: 1fr; }
    .hm-clube__grid { grid-template-columns: 1fr; }
    .hm-clube__photo { min-height: 320px; }

    .ab-essencia__head { grid-template-columns: 1fr; gap: 24px; }
    .ab-gestao__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ab-timeline__item { grid-template-columns: 90px minmax(0, 1fr); }
    .ab-timeline__photo { grid-column: 2; }

    .ev-agenda__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ev-hero__head { grid-template-columns: 1fr; gap: 24px; }

    .hm-estrutura__cards { grid-template-columns: 1fr; gap: 20px; }
    .hm-estrutura__card { height: 400px; }
    .hm-estrutura__card--down-lg, .hm-estrutura__card--down-sm { margin-top: 0; }

    .evs-sobre { grid-template-columns: 1fr; }
    .evs-inscricao { position: static; }
    .evs-info__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .evs-relacionados__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .md-estrutura { grid-template-columns: 1fr; }
    .md-gallery { height: 380px; }
    .md-equipe__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md-programas__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas: 'destaque destaque' 'infantil hidro';
    }
    .md-programas__destaque { min-height: 320px; }
    .md-programas__infantil, .md-programas__hidro { min-height: 250px; }

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

/* Responsivo — menu (≤920px) */
@media (max-width: 920px) {
    .site-nav, .site-header__member { display: none; }
    .site-header__burger { display: flex; }
    .mega { display: none !important; }
    .site-header__inner { gap: 16px; }
}

@media (min-width: 921px) {
    .mobile-menu { display: none !important; }
}

/* ---------------------------------------------------------------------------
   Responsivo — mobile (≤720px)
--------------------------------------------------------------------------- */
@media (max-width: 720px) {
    .section, .section-80 { padding: 64px 20px; }

    /* Header compacto */
    .site-header__inner { padding: 0 20px; height: 64px; gap: 12px; }
    .site-header__logo { height: 32px; }
    .site-header__actions { gap: 10px; }
    .site-header__actions .btn--sm { padding: 10px 14px; }
    .site-header__burger { width: 40px; height: 40px; }
    .mega, .mobile-menu { top: 64px; }
    .mobile-menu { max-height: calc(100vh - 64px); }

    /* Home */
    .hm-hero { min-height: 540px; }
    .hm-hero__inner { padding: 72px 20px 56px; }
    .hm-hero__title { font-size: clamp(42px, 12vw, 60px); }
    .hm-hero__subtitle { font-size: 19px; }
    .hm-hero__actions .btn { flex: 1 1 auto; }
    .hm-marquee { min-height: 96px; }
    .hm-marquee__ghost span { font-size: 64px; }
    .hm-marquee__words { gap: 10px; padding: 28px 16px; }
    .hm-marquee__words > span:not(.hm-marquee__dot) { font-size: 19px; }
    .hm-marquee__dot { width: 7px; height: 7px; }

    .hm-tabs__all { margin-left: 0; }
    .hm-bento { grid-template-columns: 1fr; grid-template-areas: 'destaque' 'menor' 'titulo' 'largo'; }
    .hm-bento__destaque-body { padding: 24px; }
    .hm-bento__destaque-title { font-size: 32px; }
    .hm-bento__largo-body { flex-direction: column; align-items: flex-start; gap: 12px; }

    .hm-estrutura { padding: 72px 20px 88px; }
    .hm-estrutura__cards { grid-template-columns: 1fr; }
    .hm-estrutura__card { height: 380px; }
    .hm-estrutura__card--down-lg, .hm-estrutura__card--down-sm { margin-top: 0; }

    .hm-eventos__grid { grid-template-columns: 1fr; }
    .hm-associacao { padding: 64px 20px; }
    .hm-associacao__form { padding: 24px; }

    /* Quem somos */
    .ab-hero { padding: 56px 0 0; }
    .ab-hero__grid { grid-template-columns: 1fr; padding: 0 20px 48px; gap: 32px; }
    .ab-hero__photo { height: 280px; }
    .ab-essencia__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .ab-essencia__feature { grid-column: auto; grid-row: auto; min-height: 320px; }
    .ab-essencia__laranja { grid-column: auto; min-height: 210px; }
    .ab-essencia__photo { min-height: 210px; }
    .ab-timeline { padding-left: 30px; }
    .ab-timeline__item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
    .ab-timeline__dot { left: -30px; top: 40px; }
    .ab-timeline__photo { grid-column: 1; }
    .ab-missao__grid { grid-template-columns: 1fr; }
    .ab-missao__card { min-height: 0; }
    .ab-galeria { padding: 64px 0; }
    .ab-galeria__head { padding: 0 20px; }
    .ab-galeria__window { overflow-x: auto; }
    .ab-galeria__strip { transform: none !important; padding: 0 20px; }
    .ab-gestao__grid { grid-template-columns: 1fr; }
    .ab-gestao__card { height: 300px; }

    /* Eventos */
    .ev-hero { padding: 56px 20px 64px; }
    .ev-slide__body { padding: 28px 24px 72px; min-height: 480px; }
    .ev-slider { min-height: 480px; }
    .ev-slide__meta { gap: 14px; }
    .ev-slider__nav { right: 16px; top: 16px; }
    .ev-slider__dots { left: 24px; bottom: 24px; }
    .ev-agenda__grid { grid-template-columns: 1fr; }
    .ev-past-card { flex-basis: 240px; height: 230px; }

    /* Evento */
    .evs-hero__inner { padding: 40px 20px 44px; }
    .evs-info__grid { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
    .evs-timeline { padding-left: 30px; }
    .evs-timeline__dot { left: -30px; }
    .evs-timeline__item { grid-template-columns: 1fr; gap: 8px; align-items: start; }
    .evs-regras { grid-template-columns: 1fr; }
    .evs-relacionados__grid { grid-template-columns: 1fr; }
    .evs-hero__actions .btn { flex: 1 1 auto; }

    /* Modalidade */
    .md-hero__inner { padding: 64px 20px 48px; }
    .md-hero__title { font-size: clamp(44px, 13vw, 60px); }
    .md-hero__text { font-size: 19px; }
    .md-hero__actions .btn { flex: 1 1 auto; }
    .md-gallery { height: 300px; }
    .md-gallery__caption { right: 24px; bottom: 84px; }
    .md-estrutura__features { grid-template-columns: 1fr; }
    .md-programas__grid { grid-template-columns: 1fr; grid-template-areas: 'destaque' 'infantil' 'hidro'; }
    .md-programas__destaque-body { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; }
    .md-grade { overflow-x: auto; }
    .md-grade__header, .md-grade__row { min-width: 620px; grid-template-columns: 110px repeat(3, minmax(150px, 1fr)); }
    .md-equipe__grid { grid-template-columns: 1fr 1fr; }

    /* Comuns */
    .cta-banner { padding: 40px 24px; }
    .cta-banner__actions { flex: 1 1 100%; }
    .site-footer { padding: 56px 20px 28px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
    .md-equipe__grid { grid-template-columns: 1fr; }
    .mobile-menu__groups { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Page Builder — utilitários dos blocos genéricos
   Prefixo pb-. Nenhuma página legada usa estas regras: são aditivas e existem
   só para os blocos montados no editor visual. Cores, tipografia e raios
   continuam vindo dos tokens do design system.
--------------------------------------------------------------------------- */
.pb-stack > * + * { margin-top: 28px; }

.pb-text { margin: 0; max-width: 760px; font-size: 17px; line-height: 1.65; color: var(--cinza); text-wrap: pretty; }
.pb-text--center { margin-left: auto; margin-right: auto; text-align: center; }

.pb-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pb-actions--center { justify-content: center; }

.pb-figure { margin: 0; }
.pb-figure img { display: block; width: 100%; object-fit: cover; }
.pb-figure--wide img { aspect-ratio: 16 / 9; }
.pb-figure--square img { aspect-ratio: 1 / 1; }
.pb-figure--tall img { aspect-ratio: 3 / 4; }
.pb-figure--rounded img { border-radius: 8px; }

.pb-preview-badge {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--noite);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(22, 32, 74, 0.28);
}
.pb-preview-badge::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--amarelo); }

/* ---------------------------------------------------------------------------
   Page Builder — realce dos textos editáveis DENTRO do canvas do editor.
   Este CSS é carregado no iframe do editor junto com o site; as regras só
   valem para elementos marcados pelo editor, então o site público não muda.
--------------------------------------------------------------------------- */
[data-pb-field].pb-editable {
    outline: 1px dashed rgba(47, 149, 246, 0.55);
    outline-offset: 3px;
    border-radius: 3px;
    cursor: text;
    transition: outline-color .15s ease, background-color .15s ease;
}
[data-pb-field].pb-editable:hover { outline-color: rgba(47, 149, 246, 0.9); }
[data-pb-field].pb-editable:focus {
    outline: 2px solid #2f95f6;
    background: rgba(47, 149, 246, 0.06);
}
