/* Minification failed. Returning unminified contents.
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(29,17): run-time error CSS1039: Token not allowed after unary operator: '-vinho'
(94,45): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(94,65): run-time error CSS1039: Token not allowed after unary operator: '-amarelo'
(110,28): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(145,46): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(145,69): run-time error CSS1039: Token not allowed after unary operator: '-principal-2'
(145,93): run-time error CSS1039: Token not allowed after unary operator: '-comp-1'
(179,35): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(197,17): run-time error CSS1039: Token not allowed after unary operator: '-vinho'
(208,38): run-time error CSS1039: Token not allowed after unary operator: '-header-altura'
(217,17): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(220,30): run-time error CSS1039: Token not allowed after unary operator: '-amarelo'
(260,24): run-time error CSS1039: Token not allowed after unary operator: '-header-altura'
(284,34): run-time error CSS1039: Token not allowed after unary operator: '-amarelo'
(298,17): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(345,63): run-time error CSS1039: Token not allowed after unary operator: '-amarelo'
(420,61): run-time error CSS1039: Token not allowed after unary operator: '-cinza-medio'
(455,61): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(456,71): run-time error CSS1039: Token not allowed after unary operator: '-cinza-medio'
(461,50): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(488,17): run-time error CSS1039: Token not allowed after unary operator: '-cinza-medio'
(490,44): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(510,51): run-time error CSS1039: Token not allowed after unary operator: '-principal-2'
(513,65): run-time error CSS1039: Token not allowed after unary operator: '-vinho'
(518,58): run-time error CSS1039: Token not allowed after unary operator: '-cinza-medio'
(535,60): run-time error CSS1039: Token not allowed after unary operator: '-comp-3'
(538,64): run-time error CSS1039: Token not allowed after unary operator: '-cinza-medio'
(543,38): run-time error CSS1039: Token not allowed after unary operator: '-comp-3'
(545,49): run-time error CSS1039: Token not allowed after unary operator: '-cinza-claro'
(576,46): run-time error CSS1039: Token not allowed after unary operator: '-vinho'
(587,149): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(606,17): run-time error CSS1039: Token not allowed after unary operator: '-vinho'
(609,79): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(614,22): run-time error CSS1039: Token not allowed after unary operator: '-principal-1'
(682,42): run-time error CSS1039: Token not allowed after unary operator: '-header-altura'
 */
/* ============================================================
   SITE INSTITUCIONAL — Instituto Dia do Amor
   Estende shared.css + _Paleta. Tipos: Akzidenz (títulos) / Rockwell (texto).
   Paleta: principal #e11450 / #ea5289 · lilás #a78bc0 · azul #0078c0
           teal #1daf8e · verde #7daf23 · amarelo #f59d24
           branco-quente #f9d2de · vinho #3c000e
   ============================================================ */

:root {
    --principal-1: #e11450;
    --principal-2: #ea5289;
    --comp-1: #ef7a91;
    --comp-2: #a78bc0;
    --comp-3: #0078c0;
    --comp-4: #1daf8e;
    --verde: #7daf23;
    --amarelo: #f59d24;
    --vinho: #3c000e;
    --branco: #f9d2de;
    --cinza-medio: #8b6375;
    --cinza-claro: #b79dab;
    --header-altura: 86px;
}

html { scroll-behavior: smooth; }

body {
    background-color: #fff;
    color: var(--vinho);
}

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

/* ------------------------------------------------------------
   CABEÇALHO / NAVEGAÇÃO
   ------------------------------------------------------------ */
.cabecalho {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background-color: rgba(60, 0, 14, 0.55);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}

.cabecalho.scrolled {
    background-color: rgba(60, 0, 14, 0.92);
    box-shadow: 0 8px 30px -12px rgba(60, 0, 14, 0.6);
}

.cabecalho-interno {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.cabecalho-logo { display: flex; align-items: center; flex-shrink: 0; }
.cabecalho-logo img { height: 46px; width: auto; }

.cabecalho-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.cabecalho-link {
    font-family: "Akzidenz";
    font-size: 16px;
    font-weight: 400;
    color: rgba(249, 210, 222, 0.82);
    letter-spacing: .2px;
    padding: 6px 0;
    transition: color .2s ease;
}

.cabecalho-link:hover { color: #fff; }

.cabecalho-link.ativo {
    color: #fff;
    font-weight: 700;
}

.cabecalho-link.ativo::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--principal-1), var(--amarelo));
}

.cabecalho-acoes {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-doar {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 26px;
    border-radius: 100px;
    background-color: var(--principal-1);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 0 0 #a60d3a;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-doar:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 0 #a60d3a;
}

/* botão hambúrguer */
.btn-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 44px;
    border: 0; background: transparent; cursor: pointer;
    padding: 0 8px;
}
.btn-menu span {
    display: block; height: 3px; border-radius: 3px;
    background-color: #fff;
}

/* ------------------------------------------------------------
   MENU MOBILE (overlay)
   ------------------------------------------------------------ */
.pagina-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: linear-gradient(160deg, var(--principal-1) 0%, var(--principal-2) 60%, var(--comp-1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .25s ease;
}
.pagina-menu.invisivel { display: none; }

.pagina-menu .btn-fechar {
    position: absolute;
    top: 26px; right: 30px;
    width: 44px; height: 44px;
    border: 0; background: transparent; cursor: pointer;
}
.pagina-menu .btn-fechar span {
    position: absolute; top: 21px; left: 7px;
    width: 30px; height: 3px; border-radius: 3px; background: #fff;
}
.pagina-menu .btn-fechar span:first-child { transform: rotate(45deg); }
.pagina-menu .btn-fechar span:last-child { transform: rotate(-45deg); }

.menu-conteudo { text-align: center; padding: 30px; }
.menu-logo { height: 56px; margin: 0 auto 40px; }
.pagina-menu nav { display: flex; flex-direction: column; gap: 18px; }
.pagina-menu nav a {
    font-family: "Akzidenz";
    font-size: 30px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
}
.pagina-menu nav a.ativo { font-weight: 700; color: #fff; }
.pagina-menu nav a.menu-doar {
    margin-top: 18px;
    align-self: center;
    background: #fff; color: var(--principal-1);
    padding: 12px 40px; border-radius: 100px; font-weight: 700;
}

/* ------------------------------------------------------------
   BALÃO PIX FIXO
   ------------------------------------------------------------ */
.balao-pix {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 16px 22px;
    border-radius: 14px;
    color: var(--vinho);
    box-shadow: 0 12px 30px -10px rgba(60,0,14,.35);
    transition: transform .2s ease;
}
.balao-pix:hover { transform: translateY(-4px); }
.balao-pix-titulo { font-size: 13px; letter-spacing: .3px; }
.balao-pix-cnpj { font-family: "Akzidenz"; font-weight: 700; font-size: 16px; margin-top: 2px; }

/* ------------------------------------------------------------
   PADRÕES DE SEÇÃO
   ------------------------------------------------------------ */
.secao.topo { padding-top: calc(var(--header-altura) + 60px); }

.eyebrow {
    display: inline-block;
    font-family: "Akzidenz";
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--principal-1);
    margin-bottom: 18px;
}
.eyebrow.claro { color: var(--amarelo); }

.titulo-secao {
    font-family: "Akzidenz";
    font-size: 46px;
    line-height: 48px;
    font-weight: 200;
}
.titulo-secao strong { font-weight: 700; }

.lead {
    font-size: 20px;
    line-height: 31px;
    max-width: 680px;
    margin-top: 24px;
}

.cabecalho-bloco { max-width: 760px; }
.cabecalho-bloco.centro { margin-left: auto; margin-right: auto; text-align: center; }
.cabecalho-bloco.centro .lead { margin-left: auto; margin-right: auto; }

/* botões extra (reaproveita .btn de shared.css) */
.btn-container .btn.fantasma {
    background: transparent;
    border: 2px solid currentColor;
    box-shadow: none !important;
}
.btn-container .btn.fantasma:hover { background: rgba(255,255,255,.12); }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #e11450 0%, #ea5289 55%, #ef7a91 100%);
    color: #fff;
    padding: calc(var(--header-altura) + 40px) 40px 80px;
}

.hero-interno {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.hero-texto { max-width: 620px; }

.hero h1 {
    font-family: "Akzidenz";
    font-size: 76px;
    line-height: 72px;
    font-weight: 200;
    letter-spacing: -1px;
}
.hero h1 strong { font-weight: 700; }
.hero h1 .destaque { color: var(--amarelo); font-weight: 700; }

.hero-sub {
    font-size: 21px;
    line-height: 32px;
    margin-top: 28px;
    max-width: 520px;
    color: rgba(255,255,255,.92);
}

.hero .btn-container { margin-top: 40px; }

.hero .btn-container .btn.principal {
    background: #fff;
    color: var(--principal-1);
    box-shadow: 0 5px 0 0 rgba(60,0,14,.25);
}
.hero .btn-container .btn.principal:hover { box-shadow: 0 9px 0 0 rgba(60,0,14,.25); }

/* mini-estatísticas no hero */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.hero-stat .n {
    font-family: "Akzidenz";
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
}
.hero-stat .l {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
    color: rgba(255,255,255,.85);
    max-width: 130px;
}

/* arte do hero */
.hero-arte {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 460px;
}
.hero-foto {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 30px 50px rgba(60,0,14,.35));
}
.hero-blob {
    position: absolute;
    border-radius: 48% 52% 57% 43% / 50% 45% 55% 50%;
    z-index: 1;
}
.hero-blob.b1 { width: 380px; height: 380px; background: rgba(255,255,255,.14); top: 30px; left: 20px; }
.hero-blob.b2 { width: 220px; height: 220px; background: var(--amarelo); opacity: .9; bottom: 10px; right: 30px; mix-blend-mode: normal; }
.hero-elemento {
    position: absolute;
    z-index: 3;
    height: 96px;
}
.hero-elemento.e1 { top: 0; right: 40px; }
.hero-elemento.e2 { bottom: 30px; left: 0; height: 120px; }

.hero-onda { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; line-height: 0; }
.hero-onda svg { width: 100%; height: 90px; display: block; }

/* ------------------------------------------------------------
   NÚMEROS / IMPACTO
   ------------------------------------------------------------ */
.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.numero-card {
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
}
.numero-card .n {
    font-family: "Akzidenz";
    font-weight: 700;
    font-size: 54px;
    line-height: 1;
}
.numero-card .n .mais { font-weight: 200; font-size: 36px; opacity: .85; }
.numero-card .l { font-size: 16px; line-height: 22px; margin-top: 14px; }

/* barras de eixos */
.eixos { margin-top: 60px; display: flex; flex-direction: column; gap: 22px; max-width: 820px; }
.eixo { }
.eixo-topo { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.eixo-nome { font-family: "Akzidenz"; font-weight: 700; font-size: 18px; }
.eixo-pct { font-family: "Akzidenz"; font-weight: 700; font-size: 18px; }
.eixo-barra { height: 14px; border-radius: 100px; background: rgba(60,0,14,.08); overflow: hidden; }
.eixo-preenchimento { height: 100%; border-radius: 100px; }

/* ------------------------------------------------------------
   CARTÕES (genérico) / DESTAQUES
   ------------------------------------------------------------ */
.cartoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.cartoes.col-2 { grid-template-columns: repeat(2, 1fr); }

.cartao {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 18px 45px -28px rgba(60,0,14,.4);
    border: 1px solid rgba(60,0,14,.06);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cartao:hover { transform: translateY(-8px); box-shadow: 0 30px 55px -28px rgba(60,0,14,.45); }

.cartao .icone {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.cartao .icone img { height: 40px; width: auto; }
.cartao h3 { font-family: "Akzidenz"; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.cartao p { font-size: 16px; line-height: 25px; color: var(--cinza-medio); }
.cartao .tag {
    margin-top: 20px;
    align-self: flex-start;
    font-family: "Akzidenz"; font-weight: 700; font-size: 13px;
    letter-spacing: .5px;
    padding: 6px 14px; border-radius: 100px;
}

/* ------------------------------------------------------------
   PROJETOS — linhas alternadas (feature rows)
   ------------------------------------------------------------ */
.projeto-linha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
}
.projeto-linha:not(:last-child) { border-bottom: 1px solid rgba(60,0,14,.08); }
.projeto-linha.invertida .projeto-media { order: 2; }

.projeto-media {
    border-radius: 22px;
    overflow: hidden;
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
.projeto-media img { max-height: 280px; width: auto; border-radius: 12px; }

.projeto-conteudo h3 {
    font-family: "Akzidenz"; font-size: 36px; line-height: 38px; font-weight: 700;
    margin-bottom: 8px;
}
.projeto-conteudo .subtitulo { font-size: 18px; color: var(--principal-1); font-family: "Akzidenz"; font-weight: 700; margin-bottom: 18px; }
.projeto-conteudo p { font-size: 17px; line-height: 27px; color: var(--cinza-medio); }
.projeto-conteudo p:not(:first-of-type) { margin-top: 18px; }
.projeto-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.projeto-tags span {
    font-size: 14px; padding: 7px 14px; border-radius: 100px;
    background: rgba(225,20,80,.08); color: var(--principal-1); font-weight: 400;
}

/* ------------------------------------------------------------
   APOIADORES — grade de logos (placeholder)
   ------------------------------------------------------------ */
.apoiadores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}
.apoiador {
    aspect-ratio: 3 / 2;
    background: #fff;
    border: 1px solid rgba(60,0,14,.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.apoiador:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -26px rgba(60,0,14,.4); }
.apoiador img { max-height: 70px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .75; transition: .2s ease; }
.apoiador:hover img { filter: none; opacity: 1; }
.apoiador .placeholder {
    font-family: "Akzidenz"; font-weight: 700; font-size: 16px;
    color: var(--cinza-medio); line-height: 21px;
}
.apoiador:hover .placeholder { color: var(--principal-1); }

/* ------------------------------------------------------------
   DEPOIMENTOS
   ------------------------------------------------------------ */
.depoimentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.depoimento {
    border-radius: 20px;
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(60,0,14,.07);
    box-shadow: 0 18px 45px -30px rgba(60,0,14,.4);
}
.depoimento .aspas {
    font-family: "Akzidenz"; font-weight: 700;
    font-size: 64px; line-height: .6; color: var(--principal-2);
    height: 34px; display: block;
}
.depoimento p { font-size: 17px; line-height: 28px; color: var(--vinho); }
.depoimento .autor {
    margin-top: 24px; display: flex; flex-direction: column;
}
.depoimento .autor .nome { font-family: "Akzidenz"; font-weight: 700; font-size: 17px; }
.depoimento .autor .papel { font-size: 14px; color: var(--cinza-medio); margin-top: 2px; }

/* ------------------------------------------------------------
   TRANSPARÊNCIA — documentos
   ------------------------------------------------------------ */
.documentos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.documento {
    border-radius: 18px;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(60,0,14,.08);
    display: flex; flex-direction: column; gap: 12px;
}
.documento .doc-icone {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(0,120,192,.1);
    display: flex; align-items: center; justify-content: center;
    font-family: "Akzidenz"; font-weight: 700; color: var(--comp-3); font-size: 14px;
}
.documento h3 { font-family: "Akzidenz"; font-size: 21px; font-weight: 700; }
.documento p { font-size: 15px; line-height: 23px; color: var(--cinza-medio); }
.documento .doc-acao {
    margin-top: auto; padding-top: 16px;
    font-family: "Akzidenz"; font-weight: 700; font-size: 15px;
}
.documento .doc-acao a { color: var(--comp-3); }
.documento.indisponivel { opacity: .75; }
.documento.indisponivel .doc-acao { color: var(--cinza-claro); }
.doc-tag-breve {
    font-size: 12px; letter-spacing: .5px; text-transform: uppercase;
    font-family: "Akzidenz"; font-weight: 700;
    background: rgba(245,157,36,.15); color: #b9700e;
    padding: 5px 12px; border-radius: 100px; align-self: flex-start;
}

/* pesquisa / resultados (transparência) */
.resultados-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.resultado { text-align: center; padding: 30px 18px; border-radius: 16px; background: rgba(255,255,255,.08); }
.resultado .n { font-family: "Akzidenz"; font-weight: 700; font-size: 46px; line-height: 1; }
.resultado .l { font-size: 14px; line-height: 20px; margin-top: 12px; opacity: .9; }

/* ------------------------------------------------------------
   CADASTRO (voluntariado / instituição) + CONTATO
   ------------------------------------------------------------ */
.cadastro-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }
.cadastro-card {
    border-radius: 22px;
    padding: 44px;
    color: #fff;
    display: flex; flex-direction: column;
    min-height: 360px;
}
.cadastro-card .icone-grande { font-size: 0; margin-bottom: 24px; }
.cadastro-card .icone-grande img { height: 96px; width: auto; }
.cadastro-card h3 { font-family: "Akzidenz"; font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.cadastro-card p { font-size: 17px; line-height: 26px; color: rgba(255,255,255,.9); }
.cadastro-card .btn-container { margin-top: auto; padding-top: 30px; }
.cadastro-card .btn {
    background: #fff !important; color: var(--vinho) !important;
    box-shadow: 0 5px 0 0 rgba(60,0,14,.25) !important;
}

.contato-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; margin-top: 50px; align-items: start; }
.contato-info { display: flex; flex-direction: column; gap: 20px; }
.contato-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px; border-radius: 16px; background: #fff;
    border: 1px solid rgba(60,0,14,.07);
}
.contato-item .ci-rotulo { font-family: "Akzidenz"; font-weight: 700; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--principal-1); }
.contato-item .ci-valor { font-size: 18px; margin-top: 4px; }

/* formulário */
.form-card {
    background: #fff; border-radius: 22px; padding: 40px;
    border: 1px solid rgba(60,0,14,.07);
    box-shadow: 0 18px 45px -30px rgba(60,0,14,.4);
}
.campo { margin-bottom: 20px; }
.campo label { display: block; font-family: "Akzidenz"; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.campo input, .campo textarea {
    width: 100%;
    font-family: "Rockwell", sans-serif;
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid rgba(60,0,14,.12);
    border-radius: 12px;
    background: #fff;
    color: var(--vinho);
    transition: border-color .2s ease;
}
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--principal-1); }
.campo textarea { min-height: 130px; resize: vertical; }
.form-card .btn-container { margin-top: 10px; }
.form-card .btn {
    border: 0; cursor: pointer; font-family: "Akzidenz";
    background: var(--principal-1); color: #fff;
    box-shadow: 0 4px 0 0 #a60d3a;
}

/* ------------------------------------------------------------
   FAIXA CTA (chamada final reaproveitável)
   ------------------------------------------------------------ */
.faixa-cta { border-radius: 0; padding: 90px 40px; text-align: center; color: #fff; }
.faixa-cta h2 { font-family: "Akzidenz"; font-size: 44px; line-height: 46px; font-weight: 200; }
.faixa-cta h2 strong { font-weight: 700; }
.faixa-cta .btn-container { justify-content: center; margin-top: 36px; }

/* ------------------------------------------------------------
   RODAPÉ
   ------------------------------------------------------------ */
.rodape { padding: 70px 40px 30px; }
.rodape-interno {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.rodape-marca img { height: 54px; margin-bottom: 20px; }
.rodape-marca p { font-size: 15px; line-height: 24px; max-width: 320px; color: rgba(249,210,222,.8); }
.rodape-coluna { display: flex; flex-direction: column; gap: 12px; }
.rodape-coluna h4 { font-size: 16px; margin-bottom: 6px; }
.rodape-coluna a, .rodape-coluna span { font-size: 15px; color: rgba(249,210,222,.8); transition: color .2s ease; }
.rodape-coluna a:hover { color: #fff; }
.rodape-cnpj { font-size: 13px !important; opacity: .7; margin-top: 6px; }
.rodape-base {
    max-width: 1280px; margin: 40px auto 0; padding-top: 24px;
    border-top: 1px solid rgba(249,210,222,.15);
    font-size: 14px; color: rgba(249,210,222,.6);
    text-align: center;
}

/* ------------------------------------------------------------
   RESPONSIVO
   ------------------------------------------------------------ */
@media screen and (max-width: 1100px) {
    .cabecalho-nav { display: none; }
    .btn-menu { display: flex; }
    .cabecalho-interno { padding: 14px 22px; }

    .hero-interno { grid-template-columns: 1fr; gap: 30px; }
    .hero-arte { order: -1; min-height: 300px; }
    .hero h1 { font-size: 50px; line-height: 50px; }
    .hero-foto { max-width: 320px; }

    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .cartoes, .cartoes.col-2 { grid-template-columns: 1fr; }
    .apoiadores-grid { grid-template-columns: repeat(2, 1fr); }
    .depoimentos { grid-template-columns: 1fr; }
    .documentos { grid-template-columns: 1fr; }
    .resultados-grid { grid-template-columns: repeat(2, 1fr); }
    .cadastro-cards { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; gap: 30px; }

    .projeto-linha { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
    .projeto-linha.invertida .projeto-media { order: 0; }
    .projeto-media { min-height: 220px; }

    .titulo-secao { font-size: 34px; line-height: 38px; }
    .lead { font-size: 18px; line-height: 28px; }

    .rodape-interno { grid-template-columns: 1fr 1fr; gap: 30px; }
    .rodape-marca { grid-column: 1 / -1; }

    .secao.topo { padding-top: calc(var(--header-altura) + 30px); }
}

@media screen and (max-width: 620px) {
    .numeros-grid { grid-template-columns: 1fr; }
    .resultados-grid, .apoiadores-grid { grid-template-columns: 1fr 1fr; }
    .numero-card .n { font-size: 46px; }
    .rodape-interno { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; line-height: 42px; }
    .hero-stats { gap: 24px; }
    /* compact, non-intrusive pill on phones (não cobre o conteúdo) */
    .balao-pix { right: 14px; bottom: 14px; padding: 11px 16px; border-radius: 100px; }
    .balao-pix-titulo { font-size: 11px; }
    .balao-pix-cnpj { font-size: 13px; }
}

