/*
================================================================
STYLE.CSS — GUIA DE APRENDIZADO
================================================================
COMO FUNCIONA:
- HTML/PHP cria os elementos.
- CSS controla aparência, tamanho, posição e adaptação ao celular.

ROTINA PARA APRENDER:
1. Altere um valor.
2. Salve com Ctrl + S.
3. Atualize com Ctrl + F5.
4. Se não gostar, use Ctrl + Z.

MEDIDAS ÚTEIS:
- px: tamanho fixo.
- %: relativo ao elemento pai.
- vw: relativo à largura da tela.
- rem: relativo ao tamanho da fonte do site.

CORES:
- #ffffff = branco.
- rgba(0,0,0,.20) = preto com 20% de transparência.
================================================================
*/

/* ==============================================================
   1. CORES PRINCIPAIS
   APRENDA: altere os códigos abaixo para mudar o site inteiro.
============================================================== */
:root {
    --blue: #356776;
    --cyan: #4d95ab;
    --orange: #e38a08;
    --orange-action: #e38a08;
    --orange-light: #ffb444;
    --cream: #ffebd3;
    --ink: #173740;
    --white: #ffffff;
    --page-soft: #f6f8f8;
    --shadow: 0 24px 70px rgba(23, 55, 64, 0.16);
    --header-height: 86px;
}

/* ==============================================================
   2. RESET E CONFIGURAÇÕES GERAIS
============================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* ==============================================================
   3. CABEÇALHO
============================================================== */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(53, 103, 118, 0.12);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: grid;
    min-width: 165px;
    line-height: 0.92;
}

.brand-kicker {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
}

.brand-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.brand-number {
    font-size: 17px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 0.12em;
}

/*
APRENDA — LOGO EM IMAGEM
1. Coloque logo-martinha.png em assets/img/.
2. No index.php, substitua o conteúdo da tag .brand por:
   <img src="assets/img/logo-martinha.png" alt="Martinha 77888">
3. Descomente este bloco:

.brand img {
    width: 210px;
    height: auto;
}
*/

.main-nav {
    margin-left: auto;
    display: flex;
    gap: 22px;
    font-size: 13px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--orange);
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
    cursor: pointer;
}

/* ==============================================================
   4. BOTÕES
============================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(23, 55, 64, 0.16);
}

.btn-orange {
    color: var(--white);
    background: var(--orange-action);
}

.btn-social-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
}

.btn-outline {
    color: var(--white);
    border-color: var(--white);
}

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

/* ==============================================================
   5. HERO — PRIMEIRA TELA

   APRENDA:
   - min-height controla a altura total.
   - padding-top cria espaço abaixo do cabeçalho.
   - background controla o gradiente.
   - overflow: visible permite que a foto avance sobre a curva.
============================================================== */
.hero {
    min-height: 840px;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        125deg,
        var(--blue) 0%,
        #3c8d9d 48%,
        #55d3da 76%,
        var(--orange) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: url("../img/padrao.png") center / cover;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-grid {
    min-height: 754px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-copy {
    color: var(--white);
    padding: 70px 0 145px;
    position: relative;
    z-index: 4;
}

.eyebrow,
.section-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* ==============================================================
   6. TÍTULO DA HERO

   APRENDA — AJUSTAR A FONTE:
   - font-size aumenta/diminui.
   - line-height muda o espaço entre linhas.
   - letter-spacing aproxima ou afasta letras.
============================================================== */
.hero-title {
    margin: 0 0 28px;
}

.hero-title-main {
    display: block;
    max-width: 10ch;
    color: var(--white);
    font-size: clamp(150px, 6.2vw, 96px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.hero-title-script {
    display: block;
    margin-top: 10px;
    color: var(--orange-light);
    font-family: "Satisfy", cursive;
    font-size: clamp(48px, 4.6vw, 78px);
    font-weight: 400;
    line-height: 1;
}

.hero-lead {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.hero-description {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}


/* ==============================================================
   7. FOTO PRINCIPAL

   APRENDA — AUMENTAR A FOTO:
   aumente width de 560px para 600px.

   APRENDA — MOVER A FOTO:
   transform: translate(X, Y)
   X positivo = direita; X negativo = esquerda.
   Y positivo = baixo; Y negativo = cima.
============================================================== */
.hero-visual {
    min-height: 754px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
}

.hero-photo {
    width: min(100%, 560px);
    height: auto;
    position: relative; 
    z-index: 4;
    transform: translate(15px, 58px);
    filter: drop-shadow(0 35px 42px rgba(0, 0, 0, 0.18));
}

.number-bg {
    position: absolute;
    right: -25px;
    top: 15%;
    color: rgba(255, 255, 255, 0.10);
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(90deg);
    z-index: 1;
}

/* ==============================================================
   8. CARTÃO "SAÚDE / TRABALHO E DIGNIDADE"

   APRENDA — POSIÇÃO:
   right move horizontalmente.
   bottom move verticalmente.
============================================================== */
.hero-badge {
    position: absolute;
    right: 0;
    bottom: 82px;
    z-index: 6;
    min-width: 220px;
    padding: 18px 22px;
    display: grid;
    background: rgba(255, 255, 255, 0.96);
    border-left: 7px solid var(--orange);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.hero-badge strong {
    color: var(--blue);
    font-size: 25px;
    line-height: 1.1;
}

.hero-badge span {
    margin-top: 5px;
    color: #60727a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ==============================================================
   9. CURVA BRANCA

   Esta curva fica por trás da foto. Isso evita o corte bruto.
   APRENDA: aumente height para uma curva mais alta.
============================================================== */
.hero-wave {
    position: absolute;
    z-index: 2;
    left: -7%;
    right: -7%;
    bottom: -78px;
    height: 170px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}

/* ==============================================================
   10. SEÇÕES GERAIS
============================================================== */
.section {
    padding: 110px 0;
}

.about-grid,
.supporter-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1,
.hero h2,
.about h2,
.section-heading h2,
.supporter h2,
.contact h2,
.cta-band h2 {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.cta-band2 h2 {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.hero h1,
.hero h2 {
  color: var(--white);
}
.section-tag {
    color: var(--orange-action);
}

/* ==============================================================
   11. QUEM SOU
============================================================== */
.photo-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--cream), var(--white));
    border-radius: 40px 140px 40px 40px;
}

.photo-frame::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 2px solid var(--orange);
    border-radius: 28px 118px 28px 28px;
    pointer-events: none;
}

.about-photo img {
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    object-position: bottom;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.stats div {
    padding-top: 13px;
    border-top: 3px solid var(--orange);
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    color: var(--blue);
}

.stats span {
    font-size: 11px;
    text-transform: uppercase;
}

/* ==============================================================
   12. PROPOSTAS
============================================================== */
.proposals {
    position: relative;
    color: var(--white);
    background: var(--blue);
}

.proposals::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/padrao.png") center / cover;
    opacity: 0.035;
}

.proposals .container {
    position: relative;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    color: var(--white);
}

.section-heading p {
    font-size: 18px;
}

.section-tag.light {
    color: var(--orange-light);
}

.axis-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.axis-tab {
    padding: 12px 18px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.axis-tab.active {
    background: var(--orange-action);
    border-color: var(--orange-action);
}

.proposal-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.proposal-grid.active {
    display: grid;
}

.proposal-card {
    min-height: 250px;
    padding: 26px;
    color: var(--ink);
    background: var(--white);
    border-bottom: 5px solid var(--orange);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.proposal-number {
    color: rgba(227, 138, 8, 0.34);
    font-size: 38px;
    font-weight: 900;
}

.proposal-card h3 {
    color: var(--blue);
    font-size: 18px;
    line-height: 1.2;
}

.proposal-card p {
    font-size: 13px;
}

/* ==============================================================
   13. KIT DO APOIADOR
============================================================== */
.supporter {
    background: linear-gradient(135deg, #fff 0, #fff 50%, var(--cream) 50%, #fff3df);
}

.supporter-tools {
    display: grid;
    gap: 16px;
}

.supporter-photo-card {
    min-height: 210px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 125px;
    align-items: center;
    gap: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(53, 103, 118, 0.2);
    transition: transform 0.25s, box-shadow 0.25s;
}

.supporter-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(53, 103, 118, 0.26);
}

.supporter-photo-copy {
    min-width: 0;
    display: grid;
    position: relative;
    z-index: 2;
}

.supporter-photo-copy small {
    margin-bottom: 7px;
    color: var(--orange-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.supporter-photo-copy strong {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.05;
}

.supporter-photo-copy > span {
    max-width: 350px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    line-height: 1.5;
}

.supporter-photo-copy b {
    margin-top: 16px;
    color: var(--orange-light);
    font-size: 12px;
}

.supporter-photo-preview {
    width: 125px;
    aspect-ratio: 1;
    padding: 8px;
    display: grid;
    place-items: center;
    transform: rotate(5deg);
    background:
        linear-gradient(155deg, var(--cream) 0 55%, var(--orange-light) 56% 65%, #264f5b 66% 100%);
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 14px 25px rgba(23, 55, 64, 0.25);
}

.supporter-photo-preview i {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.download-card {
    display: grid;
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.14);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(53, 103, 118, 0.08);
    transition: transform 0.25s, border-color 0.25s;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.download-card span {
    font-size: 27px;
}

.download-card strong {
    margin: 8px 0;
    color: var(--blue);
    line-height: 1.25;
}

.download-card small {
    color: var(--orange-action);
    font-weight: 700;
}

/* ==============================================================
   14. FAIXA DE CHAMADA
============================================================== */
.cta-band {
    padding: 48px 0;
    color: var(--white);
    background: linear-gradient(95deg, var(--orange), var(--orange-light));
}

.cta-band2 {
    padding: 48px 0;
    color: var(--white);
    background: linear-gradient(95deg, var(--orange), var(--orange-light));
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-band span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cta-band2 span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cta-band h2 {
    margin: 5px 0;
    color: var(--white);
    font-size: 42px;
}

.cta-band2 h2 {
    margin: 5px 0;
    color: var(--white);
    font-size: 42px;
}


/* ==============================================================
   15. CONTATO
============================================================== */
.contact {
    overflow: hidden;
}

.contact-copy {
    position: relative;
}

.contact-copy img {
    position: absolute;
    right: -40px;
    bottom: -110px;
    width: 270px;
    opacity: 0.12;
}

.contact-form {
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.15);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    border: 1px solid #cbd9dd;
    border-radius: 12px;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(77, 149, 171, 0.20);
    border-color: var(--cyan);
}

.contact-form .btn {
    width: 100%;
}

.contact-form small {
    display: block;
    margin-top: 12px;
    color: #667;
}

.hp {
    position: absolute;
    left: -9999px;
}

.form-alert {
    padding: 12px 15px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.form-alert.success {
    color: #17683b;
    background: #e8f7ef;
}

.form-alert.error {
    color: #a02e20;
    background: #fff0ee;
}

/* ==============================================================
   16. RODAPÉ E ELEMENTOS FLUTUANTES
============================================================== */
.site-footer {
    padding: 55px 0 20px;
    color: var(--white);
    background: #102f38;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: grid;
    align-items: center; 
    justify-content: center;  
}


.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
}

.legal {
    padding-top: 18px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 16px 8px 8px;
    color: var(--white);
    background: linear-gradient(135deg, #128c4b, #20bd63);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(10, 86, 46, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10, 86, 46, 0.42);
}

.whatsapp-float-icon {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.whatsapp-float-icon::after {
    position: absolute;
    inset: -5px;
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: inherit;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.whatsapp-float-copy {
    display: grid;
    text-align: left;
    line-height: 1.1;
}

.whatsapp-float-copy strong {
    font-size: 13px;
}

.whatsapp-float-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
}

.whatsapp-float.is-compact {
    right: auto;
    left: 24px;
    width: 64px;
    min-width: 64px;
    height: 64px;
    padding: 8px;
    justify-content: center;
}

.whatsapp-float.is-compact .whatsapp-float-copy {
    display: none;
}

@keyframes whatsapp-pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.9);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    display: block;
    width: 170px;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 210px;
    height: auto;
    object-fit: contain;
}

.footer-slogan {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-style: italic;
}
/* ==============================================================
   17. TABLET — ATÉ 980 PX

   APRENDA:
   Tudo dentro deste bloco só vale em telas com até 980px.
============================================================== */
@media (max-width: 980px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav.open {
        position: absolute;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        padding: 22px;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .hero {
        min-height: 100vh;
    }

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

    .hero-copy {
        padding: 80px 0 15px;
        text-align: center;
    }

    .hero-title-main {
        max-width: none;
    }

    .hero-lead,
    .hero-description {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-photo {
        width: min(88vw, 500px);
        transform: translate(0);
    }

    .number-bg {
        right: 50%;
        top: 7%;
        transform: translateX(50%);
        font-size: 150px;
    }

    .hero-badge {
        right: calc(50% - 260px);
        bottom: 70px;
    }

    .about-grid,
    .supporter-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .proposal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-copy img {
        display: none;
    }
}

/* ==============================================================
   18. CELULAR — ATÉ 620 PX

   Esta é a versão mobile principal.
============================================================== */
@media (max-width: 620px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-name {
        font-size: 24px;
    }

    .hero-copy {
        padding: 58px 0 10px;
    }

    .eyebrow {
        font-size: 10px;
    }

    .hero-title-main {
        font-size: clamp(42px, 13vw, 60px);
        line-height: 0.96;
        letter-spacing: -0.045em;
    }

    .hero-title-script {
        margin-top: 8px;
        font-size: clamp(38px, 12vw, 54px);
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

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

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

    .hero-photo {
        width: min(94vw, 390px);
        transform: translate(0, 52px);
    }

    .hero .photo-frame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    }

    .hero .photo-frame img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto !important;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    margin: 0 auto;
    transform: none;
    }

    .number-bg {
        display: none;
    }

    .hero-badge {
        right: 50%;
        bottom: 36px;
        min-width: 240px;
        padding: 14px 18px;
        text-align: center;
        transform: translateX(50%);
    }

    .hero-badge strong {
        font-size: 21px;
    }

    .hero-wave {
        bottom: -58px;
        height: 120px;
    }

    .section {
        padding: 75px 0;
    }

    .stats,
    .download-grid,
    .proposal-grid {
        grid-template-columns: 1fr;
    }

    .supporter-photo-card {
        min-height: 0;
        padding: 24px;
        grid-template-columns: minmax(0, 1fr) 88px;
        gap: 15px;
    }

    .supporter-photo-copy strong {
        font-size: 21px;
    }

    .supporter-photo-preview {
        width: 88px;
        border-width: 4px;
        border-radius: 12px;
    }

    .proposal-card {
        min-height: auto;
    }

    .cta-grid,
    .footer-grid {
        display: grid;
    }

    .cta-band h2 {
        font-size: 34px;
    }

    .cta-band2 h2 {
        font-size: 34px;
    }

    .footer-social {
        align-items: flex-start;
    }
}
.instagram-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    margin-top: 22px;
    padding: 13px 20px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.instagram-cta:hover {
    color: #ffffff;
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(227, 138, 8, 0.35);
}

.instagram-cta-icon {
    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    color: var(--orange);
    background: #ffffff;
    border-radius: 50%;

    font-size: 16px;
    font-weight: 900;
}

.instagram-cta-arrow {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.instagram-cta:hover .instagram-cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .footer-logo img {
        width: 180px;
    }

    .footer-slogan {
        font-size: 16px;
    }
}

/* ================================================================
   FOTO DA HERO — CONTROLE DESKTOP E MOBILE
================================================================ */

.hero-visual-mobile {
    display: none;
}

.hero-visual-desktop {
    display: flex;
}


/* ================================================================
   NOVA SEÇÃO VOTE 77888
   Fica escondida no desktop
================================================================ */

.mobile-vote-section {
    display: none;
}


/* ================================================================
   AJUSTES PARA CELULAR
================================================================ */

@media (max-width: 768px) {

    /* Hero em uma coluna */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Esconde a imagem que fica na coluna da direita no desktop */
    .hero-visual-desktop {
        display: none;
    }

    /* Mostra a imagem logo abaixo do título */
    .hero-visual-mobile {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;

        width: 100%;
        min-height: 0;
        margin: 18px 0 26px;
        overflow: visible;
    }

    .hero-visual-mobile img {
        position: relative;
        display: block;

        width: 100%;
        max-width: 430px;
        height: auto;

        margin: 0 auto;

        object-fit: contain;
        object-position: center bottom;
    }

    /* Badge da foto */
    .hero-visual-mobile .hero-badge {
        position: absolute;
        right: 0;
        bottom: 16px;
        z-index: 2;
    }

    /* Reduz o espaço superior e inferior da hero */
    .hero {
        min-height: auto;
        padding-top: 32px;
        padding-bottom: 0;
    }

    /* Nova seção */
    .mobile-vote-section {
        position: relative;
        display: block;

        padding-top: 48px;
        padding-bottom: 48px;

        color: #ffffff;
        background:
            radial-gradient(
                circle at 85% 20%,
                rgba(255, 180, 68, 0.35),
                transparent 38%
            ),
            linear-gradient(
                145deg,
                var(--blue),
                #4d95ab
            );

        overflow: hidden;
    }

    .mobile-vote-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-vote-label {
        margin-bottom: 10px;

        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .mobile-vote-content h2 {
        margin: 0;

        color: #ffffff;
        font-size: clamp(42px, 14vw, 68px);
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -0.05em;
    }

    .mobile-vote-content h2 strong {
        display: block;
        margin-top: 8px;

        color: var(--orange);
        font-size: 1.15em;
        font-weight: 900;
    }

    .mobile-vote-office {
        margin: 18px 0 28px;

        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mobile-vote-logo {
        display: block;

        width: 230px;
        max-width: 80%;
        height: auto;

        margin: 0 auto 18px;

        object-fit: contain;
    }

    .mobile-vote-name {
        margin: 0 0 8px;

        color: #ffffff;
        font-size: 22px;
        font-weight: 800;
    }

    .mobile-vote-slogan {
        margin: 0;

        color: rgba(255, 255, 255, 0.88);
        font-size: 17px;
        font-style: italic;
        font-weight: 600;
    }
}

/* ================================================================
   20. AJUSTES FINAIS — LOGO + BANNERS + HERO RESPONSIVA
   ================================================================
   ESTE BLOCO FICA NO FINAL DO CSS PARA TER PRIORIDADE.
================================================================ */

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    display: block;
    width: 170px;
    height: auto;
    object-fit: contain;
}

.top-banner {
    position: relative;
    width: 100%;
    margin-top: var(--header-height);
    background: var(--blue);
    overflow: hidden;
}

.top-banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 500;
    overflow: hidden;
}

.top-banner-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: topBannerFade 15s infinite;
}

.top-banner-slide:nth-child(1) { animation-delay: 0s; }
.top-banner-slide:nth-child(2) { animation-delay: 5s; }
.top-banner-slide:nth-child(3) { animation-delay: 10s; }

.top-banner-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.top-banner-slide:hover img { transform: scale(1.01); }

@keyframes topBannerFade {
    0% { opacity: 0; z-index: 1; }
    4% { opacity: 1; z-index: 2; }
    29% { opacity: 1; z-index: 2; }
    33.333% { opacity: 0; z-index: 1; }
    100% { opacity: 0; z-index: 1; }
}

.top-banner + .hero { padding-top: 0; }

.hero-grid {
    min-height: 754px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
        "heading visual"
        "content visual";
    grid-template-rows: auto 1fr;
    column-gap: 45px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-heading {
    grid-area: heading;
    align-self: end;
    color: var(--white);
    padding-top: 70px;
    position: relative;
    z-index: 4;
}

.hero-heading h2 {
    max-width: 650px;
    margin: 0;
    color: var(--white);
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content {
    grid-area: content;
    align-self: start;
    color: var(--white);
    padding-bottom: 145px;
    position: relative;
    z-index: 4;
}

.hero-content p,
.hero-description {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: 16px;
    line-height: 1.7;
}

.hero-visual {
    grid-area: visual;
    min-height: 754px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
}

.hero-photo {
    display: block;
    width: min(100%, 560px);
    height: auto;
    max-width: none;
    position: relative;
    z-index: 4;
    object-fit: contain;
    object-position: center bottom;
    transform: translate(15px, 58px);
    filter: drop-shadow(0 35px 42px rgba(0,0,0,.18));
}

@media (min-width: 621px) and (max-width: 980px) {
    .top-banner-slider { aspect-ratio: 2 / 1; }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "visual"
            "content";
        grid-template-rows: auto;
        gap: 0;
    }

    .hero-heading { padding: 70px 0 22px; text-align: center; }
    .hero-heading h2 { max-width: 680px; margin-inline: auto; }
    .hero-visual { min-height: 560px; }
    .hero-photo { width: min(76vw, 500px); height: auto; transform: translate(0,55px); }
    .hero-content { padding: 45px 0 110px; text-align: center; }
    .hero-content p, .hero-description { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .instagram-cta { margin-inline: auto; }
}

@media (max-width: 620px) {
    .header-logo img { width: 145px; }
    .top-banner-slider { aspect-ratio: 4 / 5; }

    .hero { min-height: auto; padding-bottom: 0; }

    .hero-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "visual"
            "content";
        grid-template-rows: auto;
        gap: 0;
    }

    .hero-heading {
        grid-area: heading;
        padding: 46px 0 20px;
        text-align: center;
    }

    .hero-heading .eyebrow { margin-bottom: 12px; font-size: 10px; }

    .hero-heading h2 {
        max-width: 520px;
        margin: 0 auto;
        color: var(--white);
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .hero-visual {
        grid-area: visual;
        width: 100%;
        min-height: 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        margin: 0;
        overflow: visible;
    }

    .hero-photo {
        display: block;
        width: min(92vw, 430px);
        height: auto !important;
        max-width: none;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
        object-position: center bottom;
        transform: none;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,.16));
    }

    .hero-badge {
        right: 50%;
        bottom: 16px;
        min-width: 245px;
        padding: 14px 18px;
        text-align: center;
        transform: translateX(50%);
    }

    .hero-badge strong { font-size: 20px; }

    .hero-content {
        grid-area: content;
        padding: 32px 0 105px;
        text-align: center;
    }

    .hero-content p, .hero-description {
        max-width: 520px;
        margin: 0 auto 25px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: min(100%, 390px);
        margin: 25px auto;
    }

    .hero-actions .btn { width: 100%; }
    .instagram-cta { display: inline-flex; margin: 5px auto 0; }
}


/* ================================================================
   99. CORREÇÃO FINAL DA HERO — FOTO ALINHADA À BASE
   ================================================================
   ESTE BLOCO DEVE FICAR NO FINAL DO CSS.

   Ele força o mesmo comportamento visual da versão antiga:
   - a Hero corta qualquer excesso da foto;
   - a área visual termina na base da seção;
   - a foto é empurrada levemente para baixo;
   - no tablet usamos outro deslocamento;
   - no mobile removemos o deslocamento.
================================================================ */

/* DESKTOP */
.hero {
    position: relative;
    min-height: 754px;
    overflow: hidden;
}

.hero-grid {
    min-height: 754px;
    align-items: stretch;
}

.hero-visual {
    grid-area: visual;
    position: relative;

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

    min-height: 754px;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: visible;

    z-index: 5;
}

.hero-photo {
    display: block;

    width: min(100%, 560px);
    height: auto !important;

    max-width: none;
    max-height: none;

    margin: 0 auto;
    padding: 0;

    position: relative;
    z-index: 4;

    object-fit: contain;
    object-position: center bottom;

    /*
    MESMO COMPORTAMENTO DA VERSÃO ANTIGA:
    15px = move para a direita
    58px = move para baixo
    */
    transform: translate(15px, 58px);

    filter: drop-shadow(
        0 35px 42px rgba(0, 0, 0, 0.18)
    );
}


/* ================================================================
   TABLET — 621px ATÉ 980px
================================================================ */
@media (min-width: 621px) and (max-width: 980px) {

    .hero {
        min-height: auto;
        overflow: hidden;
    }

    .hero-grid {
        min-height: auto;
        align-items: stretch;
    }

    .hero-visual {
        min-height: 560px;
        height: auto;

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

        margin: 0;
        padding: 0;

        overflow: visible;
    }

    .hero-photo {
        width: min(76vw, 500px);
        height: auto !important;

        margin: 0 auto;
        padding: 0;

        transform: translate(0, 55px);
    }

}


/* ================================================================
   MOBILE — ATÉ 620px

   No mobile a foto deve seguir o fluxo normal,
   portanto NÃO usamos o deslocamento de 58px.
================================================================ */
@media (max-width: 620px) {

    .hero {
        min-height: auto;
        overflow: hidden;
        padding-bottom: 0;
    }

    .hero-grid {
        min-height: auto;
        align-items: stretch;
    }

    .hero-visual {
        width: 100%;
        min-height: 0;
        height: auto;

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

        margin: 0;
        padding: 0;

        overflow: visible;
    }

    .hero-photo {
        display: block;

        width: min(92vw, 430px);
        height: auto !important;

        max-width: none;
        max-height: none;

        margin: 0 auto;
        padding: 0;

        object-fit: contain;
        object-position: center bottom;

        transform: none;
    }

}

/* ================================================================
   100. ACESSIBILIDADE, PRIVACIDADE E PÁGINAS INTERNAS
================================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange-light);
    outline-offset: 3px;
}

.download-card.is-disabled {
    cursor: not-allowed;
    opacity: 0.68;
    border-style: dashed;
    box-shadow: none;
}

.download-card.is-disabled small {
    color: #5f7279;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    margin: 18px 0;
    color: #465c64;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--orange-action);
}

.consent-check a,
.footer-legal a,
.footer-legal button {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal p {
    margin: 0;
    opacity: 0.72;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-legal a,
.footer-legal button {
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.consent-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 250;
    width: min(920px, calc(100% - 40px));
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(53, 103, 118, 0.18);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(16, 47, 56, 0.3);
    transform: translateX(-50%);
}

.consent-banner[hidden] {
    display: none;
}

.consent-banner strong {
    color: var(--blue);
    font-size: 16px;
}

.consent-banner p {
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 1.55;
}

.consent-banner p a {
    color: var(--orange-action);
    font-weight: 800;
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 10px;
}

.btn-consent-secondary,
.btn-outline-dark {
    color: var(--blue);
    background: var(--white);
    border-color: rgba(53, 103, 118, 0.36);
}

.inner-body,
.error-body {
    min-height: 100vh;
    background: var(--page-soft);
}

.inner-main {
    padding: calc(var(--header-height) + 55px) 0 90px;
}

.inner-header-cta {
    margin-left: auto;
}

.legal-page {
    max-width: 940px;
    padding: 55px 64px;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.12);
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(23, 55, 64, 0.1);
}

.legal-page-heading {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dfe8ea;
}

.legal-page h1,
.error-card h1 {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: clamp(40px, 7vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.legal-page-heading p {
    max-width: 720px;
    margin-bottom: 8px;
    font-size: 18px;
}

.legal-page-heading small {
    color: #667b82;
}

.legal-page section {
    padding: 25px 0;
    border-bottom: 1px solid #e6edef;
}

.legal-page section h2 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 23px;
}

.legal-page section p,
.legal-page section li {
    color: #425a62;
}

.legal-page section p:last-child {
    margin-bottom: 0;
}

.setup-warning {
    padding: 16px 18px;
    color: #714000;
    background: #fff1d8;
    border: 1px solid #efc372;
    border-radius: 14px;
}

.legal-page-actions,
.error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.compact-footer {
    padding-top: 20px;
}

.compact-footer .legal {
    margin-top: 0;
}

.compact-footer .legal > a {
    display: inline-block;
    margin-top: 12px;
    text-decoration: underline;
}

.error-body {
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 180, 68, 0.3), transparent 30%),
        linear-gradient(145deg, #eff6f7, #ffffff 60%);
}

.error-main {
    min-height: 100vh;
    padding: calc(var(--header-height) + 65px) 0 70px;
    display: grid;
    place-items: center;
}

.error-card {
    position: relative;
    max-width: 760px;
    padding: 55px;
    overflow: hidden;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(53, 103, 118, 0.13);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.error-card .section-tag,
.error-card h1,
.error-card p,
.error-card .error-actions {
    position: relative;
    z-index: 2;
}

.error-card p {
    max-width: 600px;
    margin: 0 auto;
    color: #496169;
    font-size: 17px;
}

.error-code {
    position: absolute;
    right: -25px;
    top: -75px;
    color: rgba(77, 149, 171, 0.08);
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
}

.error-actions {
    justify-content: center;
}

@media (max-width: 700px) {
    .consent-banner {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 18px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .consent-actions {
        display: grid;
    }

    .legal-page {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .legal-page h1,
    .error-card h1 {
        font-size: 40px;
    }

    .inner-header-cta {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 11px;
    }

    .error-card {
        padding: 45px 22px;
        border-radius: 24px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 58px;
        min-width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 6px;
        justify-content: center;
    }

    .whatsapp-float-icon {
        width: 42px;
        height: 42px;
    }

    .whatsapp-float-copy {
        display: none;
    }

    .whatsapp-float.is-compact {
        right: auto;
        left: 14px;
    }
}

/* ==============================================================
   101. PÁGINAS DE CONTEÚDO
============================================================== */
.inner-nav {
    gap: 14px;
    font-size: 11px;
}

.inner-nav a {
    white-space: nowrap;
}

.inner-nav a[aria-current="page"] {
    color: var(--orange);
}

.content-body {
    background: var(--page-soft);
}

.content-body .whatsapp-float.is-compact {
    right: 24px;
    left: auto;
}

.content-main {
    padding: calc(var(--header-height) + 62px) 0 90px;
}

.content-hero {
    padding: 62px 64px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--blue), #244e5a);
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.content-hero h1 {
    max-width: 900px;
    margin: 10px 0 20px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.content-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.content-section {
    padding-top: 72px;
}

.content-section h2,
.content-cta h2 {
    margin: 6px 0 14px;
    color: var(--blue);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.text-link {
    color: #8a5200;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content-card-grid,
.news-grid,
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.content-card,
.news-card,
.agenda-card,
.kit-guidelines {
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.14);
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(23, 55, 64, 0.08);
}

.content-card h2,
.content-card h3,
.news-card h2,
.agenda-card h3,
.kit-guidelines h2 {
    margin: 8px 0 12px;
    color: var(--blue);
    line-height: 1.2;
}

.content-card p,
.news-card p,
.agenda-card p,
.kit-guidelines li {
    color: #496169;
}

.card-kicker,
.axis-heading > span {
    color: #8a5200;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.axis-heading {
    margin-bottom: 24px;
}

.axis-heading h2 {
    max-width: 760px;
}

.proposal-detail-card {
    border-bottom: 5px solid var(--orange);
}

.empty-state {
    padding: 70px 30px;
    text-align: center;
    background: var(--white);
    border: 1px dashed rgba(53, 103, 118, 0.32);
    border-radius: 28px;
}

.empty-state > span {
    display: block;
    margin-bottom: 10px;
    font-size: 42px;
}

.empty-state h2,
.empty-state h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 28px;
}

.empty-state p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: #546d75;
}

.compact-empty {
    padding-block: 42px;
}

.agenda-list,
.document-list,
.faq-list {
    display: grid;
    gap: 16px;
}

.agenda-card {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 26px;
}

.agenda-date {
    display: grid;
    padding: 18px;
    text-align: center;
    color: var(--blue);
    background: #f1f7f8;
    border-radius: 18px;
}

.agenda-date strong {
    font-size: 19px;
}

.agenda-date span {
    color: #60757c;
    font-size: 12px;
}

.news-card h2 {
    font-size: 25px;
}

.identity-card {
    color: var(--white);
    background: var(--blue);
}

.identity-card h2,
.identity-card p,
.identity-card .card-kicker {
    color: var(--white);
}

.document-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.14);
    border-radius: 18px;
}

.document-row > span {
    padding: 7px;
    color: var(--white);
    background: var(--orange);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
}

.document-row div,
.document-row small {
    display: grid;
}

.document-row small {
    color: #687d83;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 14px;
    font-size: 22px;
    font-weight: 900;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(53, 103, 118, 0.15);
    border-radius: 18px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    color: var(--blue);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: var(--orange);
    font-size: 25px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item div {
    padding: 0 24px 22px;
    color: #496169;
}

.faq-item p {
    margin: 0;
}

.content-cta {
    margin-top: 72px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: var(--cream);
    border-radius: 28px;
}

.content-cta p {
    max-width: 700px;
    margin: 0;
}

.kit-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 34px;
    align-items: start;
}

.page-download-grid {
    margin-top: 26px;
}

.kit-guidelines {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.kit-guidelines ul {
    padding-left: 20px;
}

.kit-guidelines .btn {
    margin-top: 12px;
}

.footer-pages {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 7px 22px;
    font-size: 12px;
    font-weight: 700;
}

.footer-pages a:hover,
.footer-social a:hover {
    color: var(--orange-light);
}

@media (max-width: 980px) {
    .inner-nav.open {
        max-height: calc(100vh - var(--header-height) - 24px);
        overflow-y: auto;
    }

    .content-card-grid,
    .news-grid,
    .transparency-grid,
    .kit-layout {
        grid-template-columns: 1fr;
    }

    .kit-guidelines {
        position: static;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        justify-content: start;
    }
}

@media (max-width: 700px) {
    .content-main {
        padding-top: calc(var(--header-height) + 24px);
    }

    .content-hero {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .content-hero h1 {
        font-size: 41px;
    }

    .content-hero p {
        font-size: 15px;
    }

    .content-section {
        padding-top: 52px;
    }

    .section-title-row,
    .content-cta {
        display: grid;
        align-items: start;
    }

    .agenda-card {
        grid-template-columns: 1fr;
    }

    .agenda-date {
        justify-self: start;
        min-width: 130px;
    }

    .content-card,
    .news-card,
    .agenda-card,
    .kit-guidelines {
        padding: 24px;
    }

    .content-cta {
        margin-top: 52px;
        padding: 30px 24px;
    }

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

    .footer-social {
        gap: 12px 18px;
    }

    .content-body .whatsapp-float.is-compact {
        right: 14px;
        left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .top-banner-slide {
        opacity: 0;
    }

    .top-banner-slide:first-child {
        opacity: 1;
    }
}

.supporter-photo-preview {
    padding: 0;
    overflow: hidden;
}

.supporter-photo-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}