/* Professora Mariene 4431 — design system
   Fonte: Aeonik | Cores oficiais: identidade/design-guide.md */

@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --azul: #2D4FFB;
  --azul-profundo: #011FAA;
  --azul-medio: #145BCB;
  --amarelo: #F7E335;
  --amarelo-mostarda: #ECB22A;
  --verde: #1BCB49;
  --branco: #FFFFFF;
  --texto-escuro: #0A1440;
  --max-width: 1160px;
  --radius: 18px;
  --sombra: 0 12px 30px rgba(1, 31, 170, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Aeonik", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--texto-escuro);
  background: var(--branco);
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: "Aeonik", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 4vw, 1.6rem); }

p { line-height: 1.6; font-size: 1.05rem; margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* ---------- Botões ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Aeonik", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg) translateX(0%);
  transition: transform 0.55s ease;
  pointer-events: none;
  will-change: transform;
}
.btn:hover::after { transform: skewX(-20deg) translateX(475%); }
@media (prefers-reduced-motion: reduce) {
  .btn::after { transition: none; }
}

.btn-amarelo {
  background: var(--amarelo);
  color: var(--azul-profundo);
  box-shadow: var(--sombra);
}
.btn-azul {
  background: var(--azul);
  color: var(--branco);
  box-shadow: var(--sombra);
}
.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  box-shadow: 0 2px 14px rgba(1, 31, 170, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header .logo img { height: 48px; width: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--azul);
  cursor: pointer;
  padding: 6px;
}
.nav-toggle .icone-fechar { display: none; }
.nav-toggle.aberto .icone-abrir { display: none; }
.nav-toggle.aberto .icone-fechar { display: block; }

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.main-nav a:hover { color: var(--azul); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--azul);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding: 40px 24px;
  }
  .main-nav.aberto { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .main-nav a { color: var(--branco); font-size: 1.3rem; }
  .header-cta .btn-azul { display: none; }
}

/* ---------- Faixas geométricas / fundo técnico ---------- */
.faixa-diagonal {
  position: absolute;
  background: var(--amarelo);
  transform: skewX(-12deg);
}

/* ---------- Ticker / marquee ---------- */
.marquee {
  background: var(--amarelo);
  color: var(--azul-profundo);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid var(--azul-profundo);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: rolar-marquee 26s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-item::after {
  content: "★";
  margin: 0 28px;
  font-size: 0.7rem;
  opacity: 0.6;
}
@keyframes rolar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Contagem regressiva pra eleição ---------- */
.contagem {
  background: var(--azul-profundo);
  color: var(--branco);
  padding: 9px 0;
}
.contagem-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.contagem-rotulo {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.contagem-numeros {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.contagem-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.contagem-valor {
  font-family: "Aeonik", sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--amarelo);
  min-width: 1.5em;
  display: inline-block;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.contagem-unidade {
  font-size: 0.68rem;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .contagem-rotulo { width: 100%; }
  .contagem-numeros { gap: 8px; }
}

/* ---------- Divisor diagonal entre seções ---------- */
.divisor {
  position: relative;
  height: 46px;
  overflow: hidden;
}
.divisor::before {
  content: "";
  position: absolute;
  inset: -1px;
}
.divisor-branco-azul::before { background: var(--branco); clip-path: polygon(0 0, 100% 100%, 100% 0); }
.divisor-branco-azul { background: var(--azul); }
.divisor-azul-branco::before { background: var(--azul-profundo); clip-path: polygon(0 0, 100% 0, 0 100%); }
.divisor-azul-branco { background: var(--branco); }
@media (max-width: 700px) {
  .divisor { height: 30px; }
}

/* ---------- Cards com recorte angular ---------- */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 6px 22px;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--amarelo) transparent transparent;
}
.card-azul::before { border-color: transparent var(--verde) transparent transparent; }

.secao-azul {
  position: relative;
  background: linear-gradient(160deg, var(--azul) 0%, var(--azul-profundo) 100%);
  color: var(--branco);
  overflow: hidden;
}
.secao-azul::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 90px;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-texto { position: relative; z-index: 2; }
.hero-slogan { font-size: clamp(1.05rem, 3vw, 1.3rem); font-weight: 500; max-width: 460px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero-foto {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(200deg, var(--amarelo-mostarda), var(--amarelo) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--azul-profundo);
  font-weight: 700;
  padding: 20px;
  overflow: hidden;
}
.hero-foto span { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.numero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amarelo);
  color: var(--azul-profundo);
  border-radius: 999px;
  padding: 10px 22px 10px 14px;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: var(--sombra);
}
.numero-badge small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-foto { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- Cards / grid genérico ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(1, 31, 170, 0.08);
}
.card-azul { background: var(--azul); color: var(--branco); }

section { padding: 72px 0; }
.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header.texto-centro { margin-left: auto; margin-right: auto; }
.section-header .eyebrow { color: var(--azul); }
.secao-azul .section-header .eyebrow { color: var(--amarelo); }

/* ---------- Placeholder de mídia (aviso visual pra dev) ---------- */
.placeholder-midia {
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(1, 31, 170, 0.35);
  border-radius: var(--radius);
  background: rgba(45, 79, 251, 0.06);
  color: var(--azul-profundo);
  font-weight: 700;
  text-align: center;
  padding: 40px 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease;
}
.placeholder-midia::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(45, 79, 251, 0.14), transparent);
  animation: shimmer-midia 3.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes shimmer-midia {
  0% { transform: translateX(0%); }
  100% { transform: translateX(345%); }
}
.mosaico .placeholder-midia:hover,
a.card:hover .placeholder-midia {
  transform: scale(1.03);
}
.placeholder-midia.tem-foto {
  border: none;
  background: none;
  padding: 0;
}
.placeholder-midia.tem-foto::after { content: none; }
.placeholder-midia.tem-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-arte { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .placeholder-midia::after { animation: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, var(--azul) 0%, var(--azul-profundo) 75%);
  color: var(--branco);
  padding: 72px 0 28px;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 120px);
  pointer-events: none;
}
.footer-numero {
  position: absolute;
  right: -0.05em;
  bottom: -0.28em;
  font-family: "Aeonik", sans-serif;
  font-weight: 900;
  font-size: min(22vw, 320px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  animation: respirar-numero 7s ease-in-out infinite;
}
@keyframes respirar-numero {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-numero { animation: none; }
}
.site-footer .container { position: relative; z-index: 1; }
.footer-topo {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.footer-topo > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 32px;
}
@media (max-width: 860px) {
  .footer-topo > div + div { border-left: none; padding-left: 0; }
}
.footer-marca img { height: 56px; margin-bottom: 18px; }
.footer-frase {
  opacity: 0.85;
  font-style: italic;
  max-width: 320px;
  border-left: 3px solid var(--amarelo);
  padding-left: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amarelo);
  color: var(--azul-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, rotate 0.2s ease;
}
.footer-social a:hover {
  background: var(--branco);
  transform: translateY(-3px);
  rotate: -6deg;
}

.site-footer h4 {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  background: var(--amarelo);
  border-radius: 2px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.site-footer ul li { display: flex; align-items: center; gap: 12px; opacity: 0.9; }
.icone-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--amarelo);
  color: var(--azul-profundo);
}
.icone-mini svg { display: block; width: 17px; height: 17px; }
.site-footer a { transition: color 0.15s ease; }
.site-footer a:hover { color: var(--amarelo); }

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 22px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.8rem;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal { text-align: right; }
.footer-razao {
  display: block;
  margin-top: 3px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
@media (max-width: 860px) {
  .footer-topo { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-legal { text-align: left; }
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: #25D366;
  color: var(--branco);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  font-size: 1.8rem;
  animation: flutuar-zap 2.8s ease-in-out infinite;
  will-change: transform;
}
.whats-float svg { transition: transform 0.2s ease; }
.whats-float:hover svg { transform: scale(1.12); }

@keyframes flutuar-zap {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: translateY(-9px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.16);
  }
}
@media (prefers-reduced-motion: reduce) {
  .whats-float { animation: none; }
}

/* ---------- Balão flutuante "Coloque sua moldura" ---------- */
.moldura-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--azul-profundo);
  font-family: "Aeonik", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(1, 31, 170, 0.35);
  animation: balao-flutuar 3.2s ease-in-out infinite;
  will-change: transform;
  transition: box-shadow 0.2s ease;
}
.moldura-float svg { flex: none; transition: transform 0.2s ease; }
.moldura-float:hover { box-shadow: 0 16px 34px rgba(1, 31, 170, 0.45); }
.moldura-float:hover svg { transform: scale(1.12); }
@keyframes balao-flutuar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .moldura-float { animation: none; }
}
@media (max-width: 560px) {
  .moldura-float {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .moldura-float span { display: none; }
}

/* ---------- Formulários ---------- */
form { display: flex; flex-direction: column; gap: 16px; }
form > div, .form-linha-2 > div { min-width: 0; }
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input, textarea, select {
  display: block;
  width: 100%;
  font-family: "Aeonik", sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(1,31,170,0.15);
  background: var(--branco);
  color: var(--texto-escuro);
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--azul);
}
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Utilidades ---------- */
.texto-centro { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-verde {
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Animações / interação ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].reveal-ativo { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal="stagger"].reveal-ativo > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].reveal-ativo > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal="stagger"].reveal-ativo > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal="stagger"].reveal-ativo > *:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="stagger"] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.site-header { transition: box-shadow 0.25s ease, padding 0.25s ease; }
.site-header.rolou { box-shadow: 0 6px 22px rgba(1, 31, 170, 0.14); }
.site-header.rolou .logo img { height: 40px; transition: height 0.25s ease; }

.card, .info-card { transition: transform 0.2s ease, box-shadow 0.25s ease; will-change: transform; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(1, 31, 170, 0.16); }

.numero-badge {
  animation: pulso 2.6s ease-in-out infinite;
}

.numero-destaque {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-profundo);
  padding: 0.03em 0.22em;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 10px 22px rgba(1, 31, 170, 0.2);
}
@keyframes pulso {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 227, 53, 0.55), var(--sombra); }
  50% { box-shadow: 0 0 0 10px rgba(247, 227, 53, 0), var(--sombra); }
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* item de destaque no menu (ex.: Moldura) */
.main-nav a.nav-destaque {
  background: var(--amarelo);
  color: var(--azul-profundo);
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(-2deg);
  animation: pulso 2.6s ease-in-out infinite;
}
.main-nav a.nav-destaque::after { content: none; }
.main-nav a.nav-destaque:hover {
  color: var(--azul-profundo);
  transform: rotate(0deg) scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .main-nav a.nav-destaque { animation: none; }
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.flutuando { animation: flutuar 4.5s ease-in-out infinite; }

/* ---------- Grid de vídeos ---------- */
.videos-grid {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-em-breve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: var(--azul-profundo);
}
.video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  opacity: 0.6;
  animation: respirar-play 2.4s ease-in-out infinite;
}
@keyframes respirar-play {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0.75; }
}
@media (prefers-reduced-motion: reduce) {
  .video-play { animation: none; }
}

/* vídeo real (capa clicável que abre o Instagram) */
.video-link { display: block; background: var(--azul-profundo); }
.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 31, 170, 0.55) 0%, rgba(1, 31, 170, 0.05) 24%, rgba(1, 31, 170, 0.05) 55%, rgba(1, 31, 170, 0.8) 100%);
  transition: background 0.2s ease;
}
.video-link { box-shadow: 0 18px 36px rgba(1, 31, 170, 0.2); }
.video-link::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--amarelo) transparent transparent;
  z-index: 1;
}
.video-overlay-topo {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  max-width: 60%;
  color: var(--branco);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--amarelo);
  padding-left: 10px;
}
.video-overlay-rodape {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}
.video-overlay-rodape img { width: 100%; height: auto; display: block; }
.video-link .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-link:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.video-link:hover::after { background: linear-gradient(180deg, rgba(1, 31, 170, 0.1) 40%, rgba(1, 31, 170, 0.45)); }

/* vídeo real embutido (depoimentos) — mesma capa com botão de play, mas troca pro player com áudio ao clicar */
.video-depoimento { background: var(--azul-profundo); cursor: pointer; }
.video-depoimento video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-depoimento::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 31, 170, 0.05) 40%, rgba(1, 31, 170, 0.35));
  transition: background 0.2s ease;
}
.video-depoimento .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-depoimento:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.video-depoimento.tocando::after,
.video-depoimento.tocando .video-play-btn { display: none; }

@media (max-width: 860px) {
  .videos-grid { max-width: 300px; }
}

/* ---------- Seção "Acompanhe de perto" (home) ---------- */
.secao-videos {
  position: relative;
  background: linear-gradient(180deg, #f2f4ff 0%, var(--branco) 60%);
  overflow: hidden;
}
.secao-videos .section-header { max-width: 560px; }
@media (min-width: 861px) {
  .secao-videos .videos-grid { max-width: 1040px; }
}

/* ---------- Bio da Sobre (foto + texto) ---------- */
.secao-sobre-bio .eyebrow { color: var(--azul); }
.marca-texto {
  background: var(--amarelo);
  color: var(--azul-profundo);
  padding: 1px 6px;
  border-radius: 6px;
  font-weight: 700;
}
.foto-com-flourish { position: relative; }
.flourish-foto { display: none; }
@media (min-width: 700px) {
  .flourish-foto {
    display: block;
    position: absolute;
    top: 18px;
    left: -18px;
    z-index: 1;
    font-family: "Caveat", cursive;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--azul);
    background: var(--branco);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(1, 31, 170, 0.18);
    transform: rotate(-8deg);
    text-align: center;
  }
}
.flourish-lateral { display: none; }
@media (min-width: 1100px) {
  .flourish-lateral {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--azul-profundo);
    opacity: 0.45;
    border-top: 2px solid var(--amarelo);
    padding-top: 8px;
  }
}
.eyebrow-linhas {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-linhas::before,
.eyebrow-linhas::after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  opacity: 0.35;
}
.destaque-azul { color: var(--azul); }
.section-subtitulo { color: #5b6478; margin-top: 10px; }
.flourish-video { display: none; }
@media (min-width: 860px) {
  .flourish-video {
    display: block;
    position: absolute;
    top: 0;
    right: 8px;
    font-family: "Caveat", cursive;
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--azul);
    opacity: 0.55;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 6px;
    transform: rotate(6deg);
  }
}

/* ---------- Galeria de fotos (mosaico) ---------- */
.mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.mosaico .placeholder-midia { height: 100%; margin: 0; display: flex; align-items: center; justify-content: center; }
.mosaico-grande { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) {
  .mosaico { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
  .mosaico-grande { grid-column: span 2; grid-row: span 2; }
}

/* ---------- Newsletter ---------- */
.newsletter-form {
  text-align: left;
  max-width: 440px;
  margin: 28px auto 0;
}

/* ---------- Moldura de apoio (gerador de foto com moldura) ---------- */
#moldura { scroll-margin-top: 90px; } /* compensa o header fixo ao vir de um link "#moldura" */
.moldura-bloco {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .moldura-bloco { grid-template-columns: 1fr; }
}
.moldura-bloco h2 { color: var(--branco); }

.moldura-opcoes {
  border: 0;
  margin: 8px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.moldura-opcoes legend {
  padding: 0;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--amarelo);
}
.moldura-opcao {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.3;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.moldura-opcao:hover { border-color: rgba(255, 255, 255, 0.55); }
.moldura-opcao strong { color: var(--amarelo); }
.moldura-opcao input {
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--amarelo);
  margin: 0;
}
.moldura-opcao:has(input:checked) {
  border-color: var(--amarelo);
  background: rgba(247, 227, 53, 0.12);
}

.moldura-acoes {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.moldura-acoes label.btn { cursor: pointer; }
#moldura-input { display: none; }
#moldura-download {
  color: var(--branco);
  border-color: var(--branco);
  display: none;
}
#moldura-download.pronto { display: inline-flex; }
.moldura-aviso {
  margin-top: 14px;
  font-size: 0.8rem;
  opacity: 0.7;
}
.moldura-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
#moldura-canvas {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  filter: drop-shadow(0 18px 34px rgba(1, 31, 170, 0.35));
  touch-action: none;
  cursor: default;
}
.moldura-dica {
  margin: 0;
  font-size: 0.78rem;
  color: var(--branco);
  opacity: 0.65;
}
.moldura-ajuste {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}
.moldura-ajuste[hidden] { display: none; }
.moldura-ajuste label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--branco);
  opacity: 0.85;
  white-space: nowrap;
}
.moldura-ajuste input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  display: block;
  width: auto;
  padding: 0;
  border: none;
}
.moldura-ajuste input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amarelo);
  border: 2px solid var(--branco);
  cursor: pointer;
}
.moldura-ajuste input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amarelo);
  border: 2px solid var(--branco);
  cursor: pointer;
}
.moldura-reset {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--amarelo);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 4px 0;
}
.moldura-reset:hover { text-decoration: underline; }

/* ---------- Fale com a Professora / Apoie a Campanha ---------- */
.fale-apoia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .fale-apoia { grid-template-columns: 1fr; gap: 40px; }
}
.subtitulo-italico {
  display: block;
  font-family: "Aeonik", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: none;
  color: var(--texto-escuro);
  margin-bottom: 2px;
}
.fale-apoia h2 { color: var(--azul); margin-bottom: 18px; }

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F4F5FA;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: background 0.25s ease;
  will-change: transform;
}
.info-card:hover { background: #EAECFB; }
.info-card .icone {
  width: 44px;
  height: 44px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.info-card:hover .icone { transform: scale(1.15) rotate(-8deg); }
.info-card strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.info-card span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.form-linha-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-linha-2 { grid-template-columns: 1fr; }
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: normal;
}
.form-checkbox input { width: 18px; height: 18px; padding: 0; flex: none; }
.form-rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Card de CTA (destaque, forma geométrica) ---------- */
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-profundo) 100%);
  border-radius: 28px;
  padding: 64px 32px;
  overflow: hidden;
  color: var(--branco);
  box-shadow: 0 24px 50px rgba(1, 31, 170, 0.28);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -60px;
  width: 240px; height: 240px;
  background: var(--amarelo);
  transform: rotate(18deg);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  animation: respirar-forma 6s ease-in-out infinite;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -70px; left: -50px;
  width: 200px; height: 200px;
  background: var(--verde);
  border-radius: 50%;
  opacity: 0.22;
  animation: derivar-forma 8s ease-in-out infinite;
}
@keyframes respirar-forma {
  0%, 100% { transform: rotate(18deg) scale(1); }
  50% { transform: rotate(24deg) scale(1.06); }
}
@keyframes derivar-forma {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -10px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-card::before, .cta-card::after { animation: none; }
}
.cta-card > .container-interno { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.cta-card .eyebrow { color: var(--amarelo); }
.cta-card h2 { color: var(--branco); }
.cta-card p { color: rgba(255, 255, 255, 0.82); }
.cta-card .numero-destaque { box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28); }
.cta-card .btn-outline { color: var(--branco); border-color: var(--branco); }
@media (max-width: 600px) {
  .cta-card { padding: 48px 24px; border-radius: 22px; }
}

/* ---------- Hero (versão texto) ---------- */
.secao-hero {
  padding: 64px 0 76px;
}
.secao-hero h1 {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}
.secao-hero-video h1 {
  max-width: 26ch;
}
.secao-hero .eyebrow { color: var(--amarelo); }
.hero-destaque { color: var(--amarelo); }

/* ---------- Hero em vídeo ---------- */
.secao-hero-video { position: relative; overflow: hidden; }
.secao-hero-video::before { content: none; } /* o vídeo já dá a textura de fundo */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(45, 79, 251, 0.78) 0%, rgba(1, 31, 170, 0.88) 100%);
}
.secao-hero-video .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .secao-hero-video { background: linear-gradient(160deg, var(--azul) 0%, var(--azul-profundo) 100%); }
}

/* ---------- Hero (versão só-arte, full-bleed) — parada, ver index.html ---------- */
.hero-arte {
  width: 100%;
  line-height: 0;
}
.hero-arte img {
  width: 100%;
  height: auto;
  display: block;
}
