/* ═══════════════════════════════════════════════════════════════
   SITE — layout específico da landing page principal Carmen Silva
   (navbar, hero, números, propostas, foto-break, prova social,
   formulário, trajetória, footer, responsivo)
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: rgba(11,46,130,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.3s;
}
.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-full { height: 52px; width: auto; }
.footer-logo-full { height: 68px; width: auto; margin-bottom: 18px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
    background: var(--amarelo);
    color: var(--preto);
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    cursor: pointer;
}
.nav-cta:hover { background: var(--amarelo-dark); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   HERO
   Layout de 3 colunas: texto | estrela+foto | logo+CTA,
   com rodapé (redes sociais + selo institucional).
───────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul-dark) 100%);
    display: flex;
    flex-direction: column;
    padding-top: 96px; /* espaço pra navbar fixa */
}
/* Fundo de partículas animadas (canvas, ver js/hero-particles.js) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: var(--z-base);
    pointer-events: none;
}
/* Brilho azul-claro sutil atrás da composição central */
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: var(--z-base);
    pointer-events: none;
    background: radial-gradient(
        ellipse 60% 60% at 50% 45%,
        rgba(61,116,232,0.3) 0%,
        transparent 70%
    );
}

.hero-container {
    position: relative;
    z-index: var(--z-overlay);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1fr 1.35fr;
    align-items: center;
    gap: clamp(20px, 3.5vw, 64px);
}

/* Estrelas decorativas — preenchem o azul vazio e dão mais vida à composição */
.hero-deco-star {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    animation: heroFloat 7s ease-in-out infinite;
}
.hero-deco-star--red {
    top: -6%;
    left: 2%;
    width: clamp(20px, 2.8vw, 38px);
    background: var(--vermelho);
    -webkit-mask: url('../img/logo/estrela-vermelha.png') center / contain no-repeat;
    mask: url('../img/logo/estrela-vermelha.png') center / contain no-repeat;
    aspect-ratio: 531 / 590;
    animation-delay: 0s;
}
.hero-deco-star--green {
    bottom: 4%;
    left: 24%;
    width: clamp(16px, 2.2vw, 30px);
    background: var(--verde);
    -webkit-mask: url('../img/logo/verde.png') center / contain no-repeat;
    mask: url('../img/logo/verde.png') center / contain no-repeat;
    aspect-ratio: 1 / 1;
    animation-delay: 1.5s;
}
.hero-deco-star--yellow {
    top: 8%;
    right: 4%;
    width: clamp(18px, 2.4vw, 32px);
    background: var(--amarelo);
    -webkit-mask: url('../img/logo/estrela-hero.png') center / contain no-repeat;
    mask: url('../img/logo/estrela-hero.png') center / contain no-repeat;
    aspect-ratio: 1 / 1;
    animation-delay: 0.8s;
}
.hero-deco-star--red-sm {
    bottom: -4%;
    right: 18%;
    width: clamp(14px, 1.8vw, 24px);
    background: var(--vermelho);
    -webkit-mask: url('../img/logo/estrela-vermelha.png') center / contain no-repeat;
    mask: url('../img/logo/estrela-vermelha.png') center / contain no-repeat;
    aspect-ratio: 531 / 590;
    animation-delay: 2.2s;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-deco-star { animation: none; }
}

.hero-slogan {
    font-family: var(--font-condensed);
    font-weight: 300;
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}
.hero-slogan strong { color: #fff; font-weight: 900; }
.hero-slogan-bebas {
    display: block;
    font-family: 'Bebas Neue', var(--font-condensed);
    font-weight: 400;
    font-size: 1.5em;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hero-readmore {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s;
}
.hero-readmore:hover { opacity: 0.7; }

/* Coluna central — estrela colorida (mask do PNG oficial) + foto recortada */
.hero-col-center {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-star {
    position: absolute;
    inset: -6%;
    background: var(--amarelo);
    /* combina a forma da estrela com um degradê — a base também esmaece,
       em vez de ficar sólida bem onde a foto (por cima) já esmaeceu */
    -webkit-mask-image: url('../img/logo/estrela-hero.png'), linear-gradient(to bottom, #000 15%, transparent 55%);
    -webkit-mask-size: contain, 100% 100%;
    -webkit-mask-position: center, center;
    -webkit-mask-repeat: no-repeat, no-repeat;
    -webkit-mask-composite: source-in;
    mask-image: url('../img/logo/estrela-hero.png'), linear-gradient(to bottom, #000 15%, transparent 55%);
    mask-size: contain, 100% 100%;
    mask-position: center, center;
    mask-repeat: no-repeat, no-repeat;
    mask-composite: intersect;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: heroFloat 9s ease-in-out infinite;
}
.hero-cutout-img {
    position: relative;
    z-index: 1;
    width: 112%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
    /* esmaece a base da foto pro fundo, em vez de um corte duro */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 96%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 96%);
}
@media (prefers-reduced-motion: reduce) {
    .hero-star { animation: none; }
}

/* Logo sobreposto à foto — só aparece no mobile (ver breakpoint 960px) */
.hero-wordmark-overlay { display: none; }

/* Coluna direita — logo + CTA principal.
   align-items:stretch faz o logo e o botão terem exatamente a mesma
   largura (a da própria coluna do grid), em vez de larguras
   independentes uma da outra. */
.hero-col-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    text-align: right;
}
.hero-wordmark {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 24px rgba(0,0,0,0.35));
    transform: scale(1.4);
    transform-origin: right center;
    margin-bottom: 12px;
}
.hero-col-right .btn {
    width: 100%;
    justify-content: center;
}

/* Rodapé do hero */
.hero-footer-row {
    position: relative;
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    margin-top: clamp(24px, 4vw, 44px);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-social { display: flex; gap: 10px; }

/* Selo institucional — fixo no topo direito do hero, acima do grid */
.hero-top-tag {
    position: absolute;
    top: 112px;
    right: 32px;
    z-index: var(--z-overlay);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verde);
    text-align: right;
    max-width: 320px;
}

/* ─────────────────────────────────────────
   NÚMEROS (IMPACTO)
───────────────────────────────────────── */
#numeros {
    background: var(--azul);
    position: relative;
    overflow: hidden;
}
#numeros::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.numero-item {
    padding: 52px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    position: relative;
    min-width: 0; /* permite a coluna do grid encolher — sem isso, texto sem quebra (ex: "+60mil") força a trilha a crescer e estoura a viewport */
}
.numero-item:last-child { border-right: none; }
.numero-valor {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(52px, 5.5vw, 76px);
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.numero-label {
    font-family: var(--font-condensed);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255,255,255,0.8); /* era 0.68 — 3.93:1 sobre --azul, abaixo do mínimo 4.5:1 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* ─────────────────────────────────────────
   PROPOSTAS
───────────────────────────────────────── */
#propostas {
    background: var(--off-white);
    padding: 100px 0;
}
.section-header { margin-bottom: 60px; }
.section-eyebrow {
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--azul);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--azul);
    flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 0.92;
    color: var(--preto);
    letter-spacing: 0.01em;
}
.section-sub {
    margin-top: 16px;
    font-size: 17px;
    color: var(--gray-mid);
    line-height: 1.7;
    max-width: 560px;
}

.propostas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.proposta-card {
    background: #fff;
    border-radius: 6px;
    padding: 40px 36px 36px;
    border-left: 5px solid var(--azul);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
}
.proposta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.proposta-card:nth-child(2) { border-left-color: var(--vermelho); }
.proposta-card:nth-child(3) { border-left-color: var(--verde); }
.proposta-card:nth-child(4) { border-left-color: var(--azul-light); }

.proposta-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.proposta-card:nth-child(1) .proposta-icon-wrap { background: rgba(20,80,214,0.1);  color: var(--azul); }
.proposta-card:nth-child(2) .proposta-icon-wrap { background: rgba(238,51,51,0.1);  color: var(--vermelho); }
.proposta-card:nth-child(3) .proposta-icon-wrap { background: rgba(7,204,20,0.12);  color: #0a9e17; }
.proposta-card:nth-child(4) .proposta-icon-wrap { background: rgba(61,116,232,0.12); color: var(--azul-light); }
.proposta-icon-wrap svg { width: 24px; height: 24px; }

.proposta-titulo {
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 20px;
    color: var(--preto);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.proposta-texto {
    font-size: 15px;
    line-height: 1.72;
    color: var(--gray);
}

/* ─────────────────────────────────────────
   FOTO BREAK (entre propostas e prova social)
───────────────────────────────────────── */
#foto-break {
    position: relative;
    height: clamp(360px, 45vw, 560px);
    overflow: hidden;
    background: var(--azul-dark);
}
.foto-break-img { position: absolute; inset: 0; }
.foto-break-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 2%;
    filter: contrast(1.05) saturate(0.9);
}
.foto-break-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(11,46,130,0.9) 0%,
            rgba(11,46,130,0.88) 38%,
            rgba(11,46,130,0.15) 55%,
            rgba(11,46,130,0.15) 65%,
            rgba(11,46,130,0.85) 100%
        );
    z-index: 1;
}
.foto-break-content {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 2;
    padding: 40px 0 0;
}
.foto-break-quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.02em;
    max-width: 700px;
}
.foto-break-quote span { color: var(--verde); }
.foto-break-attr {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}
@media (max-width: 600px) {
    /* Retrato compensa a altura menor da imagem: sem excedente vertical
       pra recortar, ela some inteira e comprimida no fundo, então o
       degradê precisa escurecer quase tudo, não só uma faixa no topo. */
    #foto-break { height: 460px; }
    .foto-break-quote { font-size: clamp(22px, 6vw, 28px); }
    .foto-break-img::before {
        background:
            linear-gradient(to bottom,
                rgba(11,46,130,0.92) 0%,
                rgba(11,46,130,0.75) 35%,
                rgba(11,46,130,0.55) 60%,
                rgba(11,46,130,0.85) 100%
            );
    }
}

/* ─────────────────────────────────────────
   PROVA SOCIAL
───────────────────────────────────────── */
#prova-social {
    background: var(--azul-dark);
    padding: 100px 0;
}
.ps-header { margin-bottom: 60px; }
.ps-header .section-eyebrow { color: var(--verde); }
.ps-header .section-eyebrow::before { background: var(--verde); }
.ps-header .section-title { color: #fff; }

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.depoimentos { display: flex; flex-direction: column; gap: 18px; }
.depoimento {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--verde);
    border-radius: 4px;
    padding: 26px 28px;
    transition: background 0.2s;
}
.depoimento:nth-child(2) { border-left-color: var(--azul-light); }
.depoimento:nth-child(3) { border-left-color: var(--vermelho); }
.depoimento:hover { background: rgba(255,255,255,0.065); }

.depoimento-aspas {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--verde);
    line-height: 0.6;
    margin-bottom: 12px;
    opacity: 0.5;
}
.depoimento:nth-child(2) .depoimento-aspas { color: var(--azul-light); }
.depoimento:nth-child(3) .depoimento-aspas { color: var(--vermelho); }

.depoimento-texto {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.72;
    margin-bottom: 16px;
}
.depoimento-autor {
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 13px;
    color: var(--verde);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.depoimento:nth-child(2) .depoimento-autor { color: var(--azul-light); }
.depoimento:nth-child(3) .depoimento-autor { color: var(--vermelho); }
.depoimento-cargo {
    font-size: 13px;
    color: rgba(255,255,255,0.6); /* era 0.32 — 2.53:1 sobre --azul-dark, abaixo do mínimo 4.5:1 */
    margin-top: 2px;
}

.conquistas-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 54px);
    color: #fff;
    line-height: 0.95;
    margin-bottom: 40px;
}
.conquistas-title span { color: var(--vermelho); }

.conquista-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.conquista-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.c-dot {
    width: 8px; height: 8px;
    background: var(--vermelho);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.c-txt {
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
}
.c-txt strong { color: #fff; }

/* ─────────────────────────────────────────
   FORMULÁRIO — MID-PAGE CONVERSION
───────────────────────────────────────── */
#formulario {
    background: var(--azul-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* Foto como textura de fundo com overlay azul forte */
#formulario::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/formulario/carmen-formulario.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}
.form-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(180px, 22vw, 320px);
    color: rgba(255,255,255,0.035);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.02em;
}

.form-wrapper {
    position: relative;
    z-index: var(--z-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-pitch-eyebrow {
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.form-pitch-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--verde);
    flex-shrink: 0;
}
.form-pitch-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 72px);
    color: #fff;
    line-height: 0.9;
    margin-bottom: 24px;
}
.form-pitch-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.68;
    margin-bottom: 36px;
}
.form-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.88);
}
.form-bullets li .bullet-check {
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    background: var(--verde);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--preto);
}
.form-bullets li .bullet-check svg { width: 12px; height: 12px; }

.form-card {
    background: #fff;
    border-radius: 10px;
    padding: 48px 44px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.form-card-title {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--preto);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.form-card-sub {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 32px;
}
.form-privacy {
    text-align: center;
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-privacy svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   TRAJETÓRIA
───────────────────────────────────────── */
#trajetoria {
    background: var(--off-white);
    padding: 100px 0;
}
.traj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.traj-foto-wrap { position: relative; }
.traj-foto {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 560px;
    background: var(--azul-dark);
}
.traj-foto img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05);
}
.traj-badge {
    position: absolute;
    bottom: -22px; right: -22px;
    background: var(--vermelho);
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    padding: 18px 22px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 12px 40px rgba(238,51,51,0.4);
}
.traj-badge small {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 2px;
}

.timeline {
    list-style: none;
    position: relative;
    padding-left: 40px;
    margin-top: 8px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--azul), var(--verde));
}
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 7px;
    width: 16px; height: 16px;
    background: var(--azul);
    border-radius: 50%;
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--azul);
    transition: transform 0.2s;
}
.tl-item.final::before {
    background: var(--vermelho);
    box-shadow: 0 0 0 2px var(--vermelho);
}
.tl-item:hover::before { transform: scale(1.25); }
.tl-ano {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--azul);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.tl-item.final .tl-ano { color: var(--vermelho); }
.tl-texto {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.68;
}
.tl-texto strong { color: var(--preto); }

/* ─────────────────────────────────────────
   RESIDENCIAL MARIA FELIPA — destaque com vídeo
───────────────────────────────────────── */
#maria-felipa {
    background: var(--off-white);
    padding: 100px 0;
}
.mf-video-container {
    max-width: 1800px;
    margin: 0 auto 56px;
    padding: 0;
}
.mf-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.mf-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.mf-credito {
    margin-top: 12px;
    padding: 0 32px;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--gray-mid);
}
.mf-conteudo { max-width: 720px; }
.mf-texto {
    margin-top: 16px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.68;
}
.mf-fonte {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--azul);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s;
}
.mf-fonte:hover { opacity: 0.65; }

/* ─────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────── */
#cta-final {
    background: var(--azul);
    padding: 80px 0;
    text-align: center;
}
#cta-final .cta-final-inner { max-width: 700px; margin: 0 auto; }
#cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
#cta-final h2 span { color: var(--amarelo); }
#cta-final p.cta-final-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}
#cta-final .btn { display: inline-flex; font-size: 16px; padding: 16px 40px; }
#cta-final p.cta-final-note {
    font-size: 13px;
    color: rgba(255,255,255,0.8); /* era 0.5 — 2.80:1 sobre --azul, abaixo do mínimo 4.5:1 */
    margin-top: 16px;
}

/* ─────────────────────────────────────────
   VAQUINHA — apoio financeiro à pré-campanha
───────────────────────────────────────── */
#vaquinha {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(238,51,51,0.07) 0%, transparent 70%),
        var(--off-white);
    padding: 100px 0;
}
.vaquinha-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(238,51,51,0.14);
    border-radius: 20px;
    padding: 56px 48px;
    box-shadow: 0 30px 80px rgba(21,21,21,0.09);
}
.vaquinha-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vermelho);
    color: #fff;
    box-shadow: 0 12px 28px rgba(238,51,51,0.4);
}
.vaquinha-eyebrow { justify-content: center; color: var(--vermelho); }
.vaquinha-eyebrow::before { background: var(--vermelho); }
.vaquinha-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    color: var(--preto);
    margin-bottom: 20px;
}
.vaquinha-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}
.btn-vaquinha {
    position: relative;
    background: linear-gradient(135deg, #F15B5B 0%, var(--vermelho) 55%, #CC1E1E 100%);
    color: #fff;
    font-size: 17px;
    padding: 18px 44px;
    box-shadow: 0 14px 36px rgba(238,51,51,0.4);
}
.btn-vaquinha:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 44px rgba(238,51,51,0.55);
}
.btn-vaquinha-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--vermelho);
    opacity: 0;
    pointer-events: none;
    animation: vaquinhaPulse 2.4s ease-out infinite;
}
@keyframes vaquinhaPulse {
    0% { opacity: 0.55; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-vaquinha-ring { animation: none; display: none; }
}
.vaquinha-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-top: 24px;
}
.vaquinha-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-mid);
}
.vaquinha-trust svg { flex-shrink: 0; color: var(--vermelho); }
@media (max-width: 600px) {
    .vaquinha-card { padding: 40px 28px; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
    background: var(--azul-dark);
    padding: 64px 0 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 32px;
}
.footer-brand-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6); /* era 0.38 — 3.00:1 sobre --azul-dark, abaixo do mínimo 4.5:1 */
    line-height: 1.7;
    max-width: 300px;
    margin-top: 18px;
}
.footer-col-title {
    font-family: var(--font-condensed);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6); /* era 0.48 — 3.93:1 sobre --azul-dark, abaixo do mínimo 4.5:1 */
    transition: color 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.footer-links a:hover { color: #fff; }
.footer-links a svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.6); /* era 0.2 — 1.77:1 sobre --azul-dark, falha grave (mínimo 4.5:1) */
    line-height: 1.5;
}
.social-row { display: flex; gap: 10px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
    /* Hero: empilha em coluna única — foto+estrela primeiro (chama
       atenção), depois texto, depois logo+CTA, depois rodapé — em vez
       das 3 colunas lado a lado, que não cabem numa tela de celular. */
    #hero { min-height: 0; padding-top: 88px; }
    .hero-top-tag {
        position: static;
        display: block;
        max-width: 100%;
        text-align: center;
        padding: 0 32px;
        margin-bottom: 16px;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-slogan { text-align: center; }
    .hero-deco-star { display: none; } /* posições em % não fazem sentido empilhadas — simplifica no mobile */
    .hero-col-left { order: 2; }
    .hero-col-center { order: 1; width: min(64vw, 300px); margin: 0 auto 12px; }
    .hero-col-right { order: 3; align-items: center; text-align: center; }
    /* Logo sobreposto à foto no mobile, em vez de aparecer separado
       abaixo do texto — menor e centralizado, simétrico sobre a base
       da foto (que já esmaece, dando contraste pro branco do logo) */
    .hero-name { display: none; }
    .hero-wordmark-overlay {
        display: block;
        position: absolute;
        bottom: 6%;
        left: 50%;
        transform: translateX(-50%);
        width: 58%;
        z-index: 2;
        filter: drop-shadow(0 2px 16px rgba(0,0,0,0.45));
        pointer-events: none;
    }
    .hero-readmore { margin-bottom: 8px; }
    .hero-footer-row { flex-direction: column; gap: 16px; text-align: center; margin-top: 32px; }
    .numeros-grid { grid-template-columns: repeat(2,1fr); }
    .numero-item:nth-child(2n) { border-right: none; }
    .numero-item { padding: 36px 12px; }
    .numero-valor { font-size: clamp(28px, 9vw, 40px); }
    .propostas-grid { grid-template-columns: 1fr; }
    .ps-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-wrapper { grid-template-columns: 1fr; gap: 44px; }
    .traj-grid { grid-template-columns: 1fr; }
    .traj-foto-wrap { display: none; }
    .mf-video-container { margin-bottom: 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .nav-links { display: none; }
}
@media (max-width: 600px) {
    #navbar { padding: 14px 20px; }
    .hero-col-center { width: min(70vw, 260px); }
    .btn { justify-content: center; text-align: center; width: 100%; }
    .form-card { padding: 32px 24px; }
    #propostas, #prova-social, #formulario, #trajetoria { padding: 72px 0; }
    #trajetoria .section-title { font-size: clamp(26px, 7.5vw, 34px); }
}
