@font-face {
    font-family: "FonteTituloCampanha";
    src: url("../fonts/fonte-titulo.woff2") format("woff2");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FonteTextoCampanha";
    src: url("../fonts/fonte-texto.woff2") format("woff2");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --azul: #244b83;
    --azul-escuro: #153b70;
    --azul-profundo: #0c3166;
    --azul-card: #1e477d;
    --azul-claro: #27b8ed;

    --bege: #f7efe4;
    --bege-card: #fff5e7;

    --amarelo: #f5c52f;

    --texto: #20314c;
    --texto-suave: #52627a;

    --erro: #c43c3c;
    --sucesso: #1d7a51;

    --fonte-titulo: "FonteTituloCampanha", "Archivo Black", Arial, Helvetica, sans-serif;
    --fonte-texto: "FonteTextoCampanha", "Inter", Arial, Helvetica, sans-serif;

    --sombra: 0 18px 40px rgba(6, 29, 69, 0.22);
    --sombra-leve: 0 10px 24px rgba(6, 29, 69, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--azul);
    color: var(--bege);
    font-family: var(--fonte-texto);
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: var(--fonte-titulo);
    font-size: 0.86rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

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

/* TOPO / HERO / INTRO */

.top-ticker {
    width: 100%;
    overflow: hidden;
    background: var(--bege);
    color: var(--azul);
    border-bottom: 0;
    height: 38px;
    display: flex;
    align-items: center;
}

.top-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerMove 28s linear infinite;
}

.top-ticker span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 11px;
    font-family: var(--fonte-titulo);
    font-size: 0.98rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.top-ticker span:nth-child(even) {
    color: var(--azul-claro);
    font-size: 1.05rem;
    padding: 0 4px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-blue {
    position: relative;
    z-index: 2;
    overflow: visible;
    padding: 42px 0 72px;
    background: var(--azul);
    text-align: center;
}

.hero-inner {
    position: relative;
    z-index: 3;
}

.logo-campanha {
    width: min(430px, 82%);
    margin: 0 auto 30px;
    filter: drop-shadow(12px 16px 0 rgba(10, 46, 94, 0.55));
}

.campaign-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 92%;
    margin: 0 auto 22px;
    padding: 7px 20px 6px;
    border: 2px solid var(--amarelo);
    border-radius: 999px;
    color: var(--amarelo);
    font-family: var(--fonte-titulo);
    font-size: clamp(0.78rem, 1.05vw, 1rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero-blue h1 {
    display: grid;
    gap: 0;
    max-width: 720px;
    margin: 0 auto 28px;
    font-family: var(--fonte-titulo);
    font-size: clamp(2.35rem, 4.55vw, 4.9rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.065em;
    text-shadow: none;
}

.hero-blue h1 span {
    display: block;
}

.hero-blue h1 .line-white {
    color: var(--bege);
}

.hero-blue h1 .line-blue {
    color: var(--azul-claro);
}

.btn-hero {
    position: relative;
    z-index: 5;
    min-height: 44px;
    padding: 12px 24px 11px;
    background: var(--bege);
    color: var(--azul);
    border-radius: 999px;
    box-shadow: 0 13px 18px rgba(0, 0, 0, 0.18);
    font-size: 0.9rem;
}

.intro-beige {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    background: var(--bege);
    color: var(--azul);
    padding: 118px 0 52px;
    overflow: hidden;
}

.wave-top {
    position: absolute;
    left: -5%;
    right: -5%;
    top: -76px;
    height: 170px;
    background: var(--bege);
    border-radius: 0 0 50% 50%;
    transform: rotate(-2.8deg);
    transform-origin: center;
    z-index: 1;
}

.intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 34px;
    align-items: center;
}

.intro-text {
    padding-left: clamp(0px, 4.6vw, 66px);
}

.intro-text p {
    max-width: 390px;
    margin: 0;
    color: var(--azul);
    font-size: clamp(1.15rem, 1.62vw, 1.42rem);
    line-height: 1.13;
    font-weight: 800;
    text-align: justify;
    text-align-last: left;
}

.intro-text strong {
    font-weight: 950;
}

.intro-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.intro-image img {
    width: min(520px, 100%);
    max-height: 320px;
    object-fit: contain;
    object-position: right center;
}

/* FORMULÁRIO */

.form-section {
    background: var(--bege);
    padding: 20px 0 44px;
}

.form-section-title {
    margin: 0 0 18px;
    color: var(--azul);
    text-align: center;
    font-family: var(--fonte-titulo);
    font-size: clamp(2rem, 4.3vw, 3.55rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.068em;
}

.form-shell {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 16px;
    border-radius: 12px;
    background: var(--bege);
    box-shadow: var(--sombra);
}

.campaign-form {
    padding: 16px;
    border: 2px solid rgba(36, 75, 131, 0.12);
    border-radius: 10px;
    background: rgba(255, 247, 236, 0.82);
}

.field {
    margin-bottom: 10px;
}

.field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--azul);
    font-size: 0.8rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 40px;
    border: 2px solid rgba(36, 75, 131, 0.16);
    border-radius: 12px;
    padding: 9px 12px;
    background-color: #f9eddf;
    color: var(--texto);
    font-size: 0.92rem;
    font-weight: 750;
    outline: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--azul) 50%),
        linear-gradient(135deg, var(--azul) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 14px) 50%;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

textarea {
    min-height: 78px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--azul);
    background-color: #fff4e7;
    box-shadow: 0 0 0 4px rgba(36, 75, 131, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: rgba(78, 93, 115, 0.55);
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0 12px;
    color: var(--texto-suave);
    font-size: 0.8rem;
    line-height: 1.32;
    font-weight: 800;
}

.checkbox input {
    width: auto;
    min-height: auto;
    margin-top: 3px;
    accent-color: var(--azul);
}

.turnstile-block {
    margin: 8px 0 12px;
}

.turnstile-wrap {
    display: flex;
    justify-content: center;
    padding: 5px;
    border-radius: 12px;
    background: rgba(36, 75, 131, 0.035);
    border: 1px solid rgba(36, 75, 131, 0.08);
}

.turnstile-wrap .cf-turnstile {
    width: 100%;
    max-width: 430px;
}

.btn-submit {
    width: 100%;
    min-height: 50px;
    background: var(--azul);
    color: var(--bege);
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin: 8px 0 0;
    color: var(--texto-suave);
    font-size: 0.76rem;
    line-height: 1.32;
    font-weight: 800;
    text-align: center;
}

.form-message {
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.35;
}

.form-message.success {
    display: block;
    color: var(--sucesso);
    background: rgba(29, 122, 81, 0.1);
    border: 1px solid rgba(29, 122, 81, 0.18);
}

.form-message.error {
    display: block;
    color: var(--erro);
    background: rgba(196, 60, 60, 0.1);
    border: 1px solid rgba(196, 60, 60, 0.18);
}

/* CONTADOR */

.stats-section {
    background: var(--azul);
    padding: 36px 0 46px;
}

.stats-layout {
    width: min(640px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.stats-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.stats-image img {
    width: 142px;
    height: auto;
    object-fit: contain;
}

.stats-content {
    display: grid;
    gap: 18px;
    align-items: start;
}

.stats-number {
    display: flex;
    align-items: flex-start;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(4rem, 7vw, 6rem);
    line-height: 0.76;
    letter-spacing: -0.075em;
}

.counter-plus {
    font-size: 0.72em;
    line-height: 0.9;
    margin-right: 12px;
    letter-spacing: -0.06em;
}

.stats-copy {
    color: var(--amarelo);
    font-family: var(--fonte-titulo);
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: -0.035em;
}

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

.stats-copy strong {
    color: var(--amarelo);
    font-size: clamp(1.6rem, 3.2vw, 2.45rem);
    line-height: 0.98;
}

.stats-copy span {
    margin-top: 34px;
    color: var(--amarelo);
    font-size: clamp(1.6rem, 3.2vw, 2.45rem);
    line-height: 0.98;
}

/* DEBATE CENTRAL */

.debate-section {
    background: var(--azul);
    padding: 56px 0 52px;
}

.debate-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.section-title-block span {
    display: block;
    margin-bottom: 18px;
    color: var(--amarelo);
    font-family: var(--fonte-texto);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
}

.section-title-block h2 {
    max-width: 430px;
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(3rem, 4.35vw, 5rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.06em;
}

.section-text-block {
    padding-top: 58px;
}

.section-text-block p {
    max-width: 480px;
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.25rem, 1.65vw, 1.7rem);
    line-height: 1.28;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-top: 58px;
}

.problem-card {
    position: relative;
    text-align: center;
    color: var(--bege);
}

.problem-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin: 0 auto 34px;
}

.problem-card h3 {
    position: relative;
    min-height: 90px;
    margin: 0 0 20px;
    padding-bottom: 20px;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(2.1rem, 3.2vw, 3.4rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.06em;
}

.problem-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    border-bottom: 6px dotted var(--amarelo);
}

.problem-card p {
    max-width: 250px;
    margin: 0 auto;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.22;
    font-weight: 500;
}

/* PROJETO */

.project-block {
    position: relative;
    overflow: hidden;
    background: var(--azul);
    padding: 44px 0 0;
}

.status-feature {
    max-width: 840px;
    margin: 0 auto 54px;
}

.status-heading {
    display: grid;
    grid-template-columns: 110px auto;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 22px;
}

.status-heading img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.status-heading h2 {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(2.8rem, 4.2vw, 4.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.065em;
}

.status-text-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 28px;
    border: 3px solid var(--amarelo);
    border-radius: 22px;
}

.status-text-box p {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.2rem, 1.55vw, 1.65rem);
    line-height: 1.28;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.status-text-box strong {
    font-weight: 950;
}

.project-feature {
    display: grid;
    grid-template-columns: 0.9fr 190px 1fr;
    gap: 36px;
    align-items: center;
}

.project-title span {
    display: block;
    margin-bottom: 10px;
    color: var(--amarelo);
    font-family: var(--fonte-texto);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
}

.project-title h2 {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(2.75rem, 3.95vw, 4.3rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.062em;
}

.project-title h2 em {
    display: inline-block;
    color: var(--azul-claro);
    font-style: normal;
}

.project-drop-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-drop-wrap img {
    width: 175px;
    height: auto;
    object-fit: contain;
}

.project-copy p {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.25rem, 1.65vw, 1.7rem);
    line-height: 1.38;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.project-copy strong {
    font-weight: 950;
}

.project-detail-band {
    position: relative;
    z-index: 2;
    margin-top: 44px;
    padding: 0 0 30px;
    background: var(--bege);
}

.project-detail-band::before {
    content: "";
    position: absolute;
    left: -5vw;
    right: -5vw;
    top: -48px;
    height: 88px;
    background: var(--bege);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.project-detail-card {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    align-items: stretch;
    max-width: 980px;
    border-radius: 42px;
    background: var(--azul);
    overflow: hidden;
}

.project-detail-photo {
    min-height: 330px;
    background: var(--azul);
    padding: 14px 0 14px 14px;
}

.project-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: 302px;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

.project-detail-text {
    display: flex;
    align-items: center;
    padding: 30px 42px;
    background: var(--azul);
    color: var(--bege);
}

.project-detail-text p {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.35rem, 1.95vw, 2.05rem);
    line-height: 1.42;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.project-detail-text strong {
    font-weight: 950;
}

.project-wave {
    position: absolute;
    left: -5vw;
    right: -5vw;
    bottom: -1px;
    height: 76px;
    background: transparent;
    z-index: 3;
}

.project-wave::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 88px;
    background:
        radial-gradient(110px 48px at 5% 100%, var(--azul) 98%, transparent 100%),
        radial-gradient(140px 58px at 22% 100%, var(--azul) 98%, transparent 100%),
        radial-gradient(140px 58px at 39% 100%, var(--azul) 98%, transparent 100%),
        radial-gradient(140px 58px at 56% 100%, var(--azul) 98%, transparent 100%),
        radial-gradient(140px 58px at 73% 100%, var(--azul) 98%, transparent 100%),
        radial-gradient(110px 48px at 92% 100%, var(--azul) 98%, transparent 100%);
}

/* NA PRÁTICA + RELATOS */

.practical-reports-section {
    background: var(--azul);
    color: var(--bege);
    padding: 66px 0 58px;
}

.practical-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.practical-card {
    position: relative;
    min-height: 260px;
    padding: 96px 26px 28px;
    border-radius: 20px;
    background: var(--bege);
    color: var(--azul);
    text-align: center;
}

.practical-icon {
    position: absolute;
    left: 50%;
    top: -58px;
    width: 122px;
    height: 122px;
    transform: translateX(-50%);
    border: 8px solid var(--bege);
    border-radius: 50%;
    background: var(--azul-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.practical-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practical-card h3 {
    margin: 0 0 18px;
    color: var(--azul);
    font-family: var(--fonte-titulo);
    font-size: clamp(1.65rem, 2.1vw, 2.35rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.055em;
}

.practical-card p {
    max-width: 310px;
    margin: 0 auto;
    color: var(--azul);
    font-family: var(--fonte-texto);
    font-size: clamp(0.98rem, 1.2vw, 1.22rem);
    line-height: 1.24;
    font-weight: 500;
}

.reports-grid {
    display: grid;
    grid-template-columns: 0.9fr 190px 1.1fr;
    gap: 38px;
    align-items: center;
    margin-top: 78px;
}

.reports-title span {
    display: block;
    margin-bottom: 22px;
    color: var(--amarelo);
    font-family: var(--fonte-texto);
    font-size: 1.05rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
}

.reports-title h2 {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(2.75rem, 4vw, 4.45rem);
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.06em;
}

.reports-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reports-icon img {
    width: 185px;
    height: 185px;
    object-fit: contain;
}

.reports-copy p {
    margin: 0;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.35rem, 1.85vw, 2rem);
    line-height: 1.42;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.reports-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-report {
    min-height: 50px;
    padding: 11px 28px 10px;
    border: 5px solid var(--amarelo);
    border-radius: 999px;
    background: var(--bege);
    color: var(--azul);
    font-family: var(--fonte-titulo);
    font-size: clamp(1rem, 1.55vw, 1.4rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    box-shadow: none;
}

/* FAQ */

.faq-section {
    position: relative;
    overflow: hidden;
    background: var(--bege);
    color: var(--azul);
    padding: 46px 0 60px;
}

.faq-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-heading {
    margin-bottom: 28px;
}

.faq-heading span {
    display: block;
    margin-bottom: 18px;
    color: var(--amarelo);
    font-family: var(--fonte-texto);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 800;
}

.faq-heading h2 {
    margin: 0;
    color: var(--azul);
    font-family: var(--fonte-titulo);
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.06em;
}

.faq-list {
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.faq-item {
    display: grid;
    gap: 16px;
}

.faq-question {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    min-height: 46px;
    padding: 10px 22px 10px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--azul);
    color: var(--bege);
    font-family: var(--fonte-titulo);
    font-size: clamp(1.05rem, 1.55vw, 1.55rem);
    line-height: 1;
    text-align: left;
    text-transform: none;
    letter-spacing: -0.035em;
    cursor: default;
}

.faq-arrow {
    display: inline-block;
    margin-right: 16px;
    color: var(--bege);
    font-size: 0.78em;
    line-height: 1;
}

.faq-answer {
    padding-left: 38px;
}

.faq-answer p {
    max-width: 930px;
    margin: 0;
    color: var(--azul);
    font-family: var(--fonte-texto);
    font-size: clamp(1.15rem, 1.55vw, 1.55rem);
    line-height: 1.36;
    font-weight: 500;
    text-align: justify;
    text-align-last: left;
}

.faq-illustration {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: -42px;
    margin-right: -54px;
}

.faq-illustration img {
    width: 320px;
    max-width: none;
    height: auto;
}

/* CHAMADA FINAL */

.final-call {
    position: relative;
    overflow: hidden;
    padding: 70px 0 64px;
    background:
        linear-gradient(
            rgba(36, 75, 131, 0.10),
            rgba(36, 75, 131, 0.10)
        ),
        url("../img/fundo-chamada-final.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.final-call-inner {
    position: relative;
    z-index: 2;
}

.final-call h2 {
    max-width: 720px;
    margin: 0 auto 28px;
    font-family: var(--fonte-titulo);
    font-size: clamp(3.2rem, 5.5vw, 5.9rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.065em;
}

.final-call h2 span {
    display: block;
}

.final-blue {
    color: var(--azul-claro);
    font-weight: 900;
}

.final-light {
    color: var(--bege);
    font-weight: 900;
}

.final-call p {
    max-width: 660px;
    margin: 0 auto 34px;
    color: var(--bege);
    font-family: var(--fonte-texto);
    font-size: clamp(1.55rem, 2.45vw, 2.45rem);
    line-height: 1.2;
    font-weight: 500;
}

.final-call p strong {
    font-weight: 950;
}

.btn-final {
    min-height: 50px;
    padding: 11px 28px 10px;
    border: 5px solid var(--amarelo);
    border-radius: 999px;
    background: var(--bege);
    color: var(--azul);
    font-family: var(--fonte-titulo);
    font-size: clamp(1rem, 1.55vw, 1.4rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    box-shadow: none;
}

/* FOOTER */

.footer {
    padding: 32px 0;
    background: var(--azul-profundo);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.footer-brand img {
    width: min(220px, 80%);
    margin-bottom: 10px;
}

.footer p {
    margin: 0;
    color: var(--bege);
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 750;
}

.footer-marinor {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.footer-marinor p {
    max-width: 360px;
    text-align: right;
}

.footer-marinor img {
    width: min(160px, 40vw);
}

/* MOBILE */

@media (max-width: 720px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

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

    .top-ticker {
        height: 34px;
    }

    .top-ticker span {
        font-size: 0.74rem;
        padding: 0 9px;
    }

    .top-ticker span:nth-child(even) {
        font-size: 0.88rem;
        padding: 0 2px;
    }

    .hero-blue {
        padding: 30px 0 58px;
    }

    .logo-campanha {
        width: min(310px, 86vw);
        margin-bottom: 22px;
        filter: drop-shadow(8px 10px 0 rgba(10, 46, 94, 0.5));
    }

    .campaign-label {
        max-width: 92%;
        padding: 6px 12px 5px;
        font-size: 0.62rem;
        line-height: 1.15;
    }

    .hero-blue h1 {
        max-width: 350px;
        margin-bottom: 22px;
        font-size: clamp(2.05rem, 10.8vw, 3.3rem);
        line-height: 0.92;
        letter-spacing: -0.065em;
    }

    .btn {
        width: auto;
        max-width: 100%;
    }

    .btn-hero {
        min-height: 40px;
        padding: 11px 18px 10px;
        font-size: 0.72rem;
    }

    .intro-beige {
        padding: 78px 0 38px;
    }

    .wave-top {
        top: -44px;
        height: 96px;
        transform: rotate(-3deg);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .intro-text {
        padding-left: 0;
        order: 1;
    }

    .intro-text p {
        max-width: 330px;
        margin: 0 auto;
        font-size: 1.03rem;
        line-height: 1.18;
        text-align: left;
    }

    .intro-image {
        order: 2;
        justify-content: center;
    }

    .intro-image img {
        width: min(330px, 92vw);
        max-height: 220px;
        object-position: center;
    }

    .form-section {
        padding: 38px 0 42px;
    }

    .form-section-title {
        max-width: 360px;
        margin: 0 auto 16px;
        font-size: clamp(1.9rem, 9vw, 2.8rem);
        line-height: 0.92;
    }

    .form-shell {
        width: 100%;
        padding: 10px;
        border-radius: 14px;
    }

    .campaign-form {
        padding: 13px;
        border-radius: 12px;
    }

    .field-group {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .field {
        margin-bottom: 10px;
    }

    label {
        font-size: 0.78rem;
    }

    input,
    select,
    textarea {
        min-height: 44px;
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    textarea {
        min-height: 88px;
    }

    .checkbox {
        font-size: 0.76rem;
        line-height: 1.3;
        gap: 8px;
    }

    .turnstile-wrap {
        padding: 4px;
        overflow: hidden;
    }

    .btn-submit {
        width: 100%;
        min-height: 48px;
        font-size: 0.78rem;
    }

    .form-note {
        font-size: 0.72rem;
    }

    .stats-section {
        padding: 34px 0 42px;
    }

    .stats-layout {
        width: min(100% - 28px, 420px);
        grid-template-columns: 92px 1fr;
        gap: 16px;
    }

    .stats-image {
        justify-content: center;
    }

    .stats-image img {
        width: 92px;
    }

    .stats-content {
        gap: 12px;
    }

    .stats-number {
        font-size: clamp(3.2rem, 18vw, 4.8rem);
    }

    .counter-plus {
        margin-right: 7px;
    }

    .stats-copy strong,
    .stats-copy span {
        font-size: clamp(1.3rem, 7vw, 2rem);
        line-height: 1;
    }

    .stats-copy span {
        margin-top: 26px;
    }

    .debate-section {
        padding: 46px 0 48px;
    }

    .debate-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .section-title-block span {
        margin-bottom: 14px;
        font-size: 0.9rem;
    }

    .section-title-block h2 {
        max-width: 350px;
        font-size: clamp(2.45rem, 11vw, 3.8rem);
        line-height: 0.92;
    }

    .section-text-block {
        padding-top: 0;
    }

    .section-text-block p {
        max-width: 350px;
        font-size: 1.06rem;
        line-height: 1.32;
        text-align: left;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 46px;
    }

    .problem-card img {
        width: 82px;
        height: 82px;
        margin-bottom: 20px;
    }

    .problem-card h3 {
        min-height: auto;
        margin-bottom: 18px;
        padding-bottom: 18px;
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .problem-card h3::after {
        left: 12%;
        right: 12%;
        border-bottom-width: 5px;
    }

    .problem-card p {
        max-width: 300px;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .project-block {
        padding: 42px 0 0;
    }

    .status-feature {
        margin-bottom: 48px;
    }

    .status-heading {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
        margin-bottom: 22px;
    }

    .status-heading img {
        width: 92px;
        height: 92px;
        margin: 0 auto;
    }

    .status-heading h2 {
        font-size: clamp(2.4rem, 11vw, 3.7rem);
        line-height: 0.9;
    }

    .status-text-box {
        padding: 18px;
        border-width: 2px;
        border-radius: 20px;
    }

    .status-text-box p {
        font-size: 1.02rem;
        line-height: 1.35;
        text-align: left;
    }

    .project-feature {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .project-title span {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .project-title h2 {
        max-width: 360px;
        margin: 0 auto;
        font-size: clamp(2.35rem, 11vw, 3.8rem);
        line-height: 0.92;
    }

    .project-drop-wrap img {
        width: 150px;
    }

    .project-copy p {
        max-width: 350px;
        margin: 0 auto;
        font-size: 1.05rem;
        line-height: 1.35;
        text-align: left;
    }

    .project-detail-band {
        margin-top: 42px;
        padding-bottom: 42px;
    }

    .project-detail-band::before {
        top: -30px;
        height: 58px;
    }

    .project-detail-card {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .project-detail-photo {
        min-height: auto;
        padding: 12px 12px 0;
    }

    .project-detail-photo img {
        min-height: 220px;
        max-height: 260px;
        border-radius: 20px;
    }

    .project-detail-text {
        padding: 22px 20px 26px;
        text-align: center;
    }

    .project-detail-text p {
        font-size: 1.08rem;
        line-height: 1.38;
        text-align: left;
    }

    .project-wave {
        height: 52px;
    }

    .project-wave::before {
        height: 62px;
        background:
            radial-gradient(80px 34px at 8% 100%, var(--azul) 98%, transparent 100%),
            radial-gradient(90px 38px at 30% 100%, var(--azul) 98%, transparent 100%),
            radial-gradient(90px 38px at 52% 100%, var(--azul) 98%, transparent 100%),
            radial-gradient(90px 38px at 74% 100%, var(--azul) 98%, transparent 100%),
            radial-gradient(80px 34px at 94% 100%, var(--azul) 98%, transparent 100%);
    }

    .practical-reports-section {
        padding: 68px 0 52px;
    }

    .practical-cards {
        grid-template-columns: 1fr;
        gap: 82px;
    }

    .practical-card {
        min-height: auto;
        padding: 92px 22px 28px;
        border-radius: 20px;
    }

    .practical-icon {
        top: -54px;
        width: 112px;
        height: 112px;
        border-width: 7px;
    }

    .practical-card h3 {
        margin-bottom: 16px;
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .practical-card p {
        max-width: 280px;
        font-size: 1.02rem;
        line-height: 1.28;
    }

    .reports-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 70px;
        text-align: center;
    }

    .reports-title span {
        margin-bottom: 14px;
        font-size: 0.92rem;
    }

    .reports-title h2 {
        max-width: 340px;
        margin: 0 auto;
        font-size: clamp(2.45rem, 11vw, 3.7rem);
        line-height: 0.94;
    }

    .reports-icon img {
        width: 150px;
        height: 150px;
    }

    .reports-copy p {
        max-width: 340px;
        margin: 0 auto;
        font-size: 1.08rem;
        line-height: 1.35;
        text-align: left;
    }

    .reports-button-wrap {
        margin-top: 34px;
    }

    .btn-report {
        width: auto;
        min-height: 50px;
        padding: 12px 24px 11px;
        border-width: 5px;
        font-size: 1.05rem;
    }

    .faq-section {
        padding: 42px 0 54px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .faq-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .faq-heading span {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .faq-heading h2 {
        max-width: 350px;
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        line-height: 0.94;
    }

    .faq-list {
        gap: 24px;
    }

    .faq-item {
        gap: 12px;
    }

    .faq-question {
        width: 100%;
        min-height: 48px;
        padding: 11px 16px;
        border-radius: 18px;
        font-size: 1rem;
        line-height: 1.12;
    }

    .faq-arrow {
        margin-right: 10px;
    }

    .faq-answer {
        padding-left: 0;
    }

    .faq-answer p {
        font-size: 1.02rem;
        line-height: 1.36;
        text-align: left;
    }

    .faq-illustration {
        order: -1;
        justify-content: flex-end;
        margin: -28px -72px -18px 0;
        pointer-events: none;
    }

    .faq-illustration img {
        width: 230px;
    }

    .final-call {
        padding: 58px 0 54px;
        background-position: center;
    }

    .final-call h2 {
        max-width: 350px;
        margin-bottom: 24px;
        font-size: clamp(2.5rem, 11vw, 4rem);
        line-height: 0.96;
    }

    .final-call p {
        max-width: 330px;
        margin-bottom: 30px;
        font-size: clamp(1.2rem, 5.8vw, 1.75rem);
        line-height: 1.25;
    }

    .btn-final {
        width: auto;
        min-height: 50px;
        padding: 12px 24px 11px;
        border-width: 5px;
        font-size: 1.05rem;
    }

    .footer {
        padding: 24px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-brand img {
        width: min(190px, 70vw);
        margin: 0 auto 10px;
    }

    .footer-marinor {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
    }

    .footer-marinor p {
        max-width: 300px;
        text-align: center;
    }

    .footer-marinor img {
        width: min(140px, 60vw);
    }
}