/* ===================================================================
   PARTICIPE DA PRÉ-CAMPANHA — Kim Kataguiri
   Tema dark/dourado, grunge, responsivo. Formulário em destaque.
=================================================================== */

:root {
  --gold: #E6A81C;
  --gold-bright: #F2B718;
  --gold-deep: #C8860D;
  --bg: #0B0B0C;
  --bg-2: #131210;
  --bg-3: #1A1813;
  --ink: #F5F1E8;
  --ink-dim: #B7B0A2;
  --line: rgba(230, 168, 28, 0.22);
  --radius: 14px;
  --maxw: 1160px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --font-display: "Anton", system-ui, sans-serif;
  --font-cond: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.gold { color: var(--gold); }

/* ---------- Tipografia de seção ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 10px 28px rgba(230, 168, 28, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(230, 168, 28, 0.5); }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ===================================================================
   HEADER
=================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; min-width: 0; }
.brand-kim { height: 30px; width: auto; transition: height 0.3s ease; flex: 0 0 auto; }
.site-header.scrolled .brand-kim { height: 26px; }
.brand-minato { height: 30px; width: auto; transition: height 0.3s ease; flex: 0 0 auto; }
.site-header.scrolled .brand-minato { height: 26px; }
.brand-sep { width: 1px; height: 24px; background: var(--line); display: inline-block; flex: 0 0 auto; }
.logo-chip { display: inline-flex; align-items: center; background: var(--ink); border-radius: 8px; padding: 6px 11px; }
.logo-chip img { display: block; width: auto; }
.brand-chip img { height: 20px; transition: height 0.3s ease; }
.site-header.scrolled .brand-chip img { height: 17px; }
.btn-header { padding: 10px 20px; font-size: 0.85rem; }
.brand-group { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 1 1 auto; }

/* ---------- Botão hamburger ---------- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(230, 168, 28, 0.08);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.menu-toggle:hover { background: rgba(230, 168, 28, 0.16); border-color: var(--gold); }
.menu-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Overlay + painel: outros portais ---------- */
.portals-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 4, 0.6);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.portals-overlay.is-visible { opacity: 1; }

.portals-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.portals-panel.is-open { transform: translateX(0); }

.portals-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.portals-panel-title {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--gold);
}
.portals-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.portals-close:hover { background: rgba(230, 168, 28, 0.12); border-color: var(--gold); }

.portals-list { list-style: none; padding: 10px 12px; }
.portals-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.portals-link:hover { background: rgba(230, 168, 28, 0.1); }
.portals-link-name {
  font-family: var(--font-cond);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.portals-link-url { font-size: 0.78rem; color: var(--ink-dim); }
.portals-link-tag {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 2px 8px;
  border-radius: 999px;
}
.portals-link.is-current .portals-link-name { color: var(--gold); }

body.portals-open { overflow: hidden; }

/* ===================================================================
   HERO + FORMULÁRIO
=================================================================== */
.lead-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 116px 0 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, #241d10 0%, var(--bg) 55%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 120vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(230, 168, 28, 0.22), transparent 62%);
  filter: blur(20px);
  animation: pulse 7s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
.hero-grain {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* Coluna de texto */
.lead-copy { max-width: 540px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 2vw, 0.92rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(230, 168, 28, 0.05);
}
.lead-hero-art { margin: 0; line-height: 0; }
.lead-hero-art img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 42px rgba(230, 168, 28, 0.18));
}
.lead-sub {
  max-width: 470px;
  margin: 22px auto 0;
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
}

/* Cartão do formulário */
.lead-form-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3.4vw, 36px);
  box-shadow: var(--shadow);
}
.form-head { margin-bottom: 22px; }
.form-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.5px;
}
.form-sub { color: var(--ink-dim); font-size: 0.92rem; margin-top: 8px; }

/* ===================================================================
   CAMPOS DE FORMULÁRIO
=================================================================== */
.field { margin-bottom: 16px; position: relative; }
.field-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
.field label {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.req { color: var(--gold); }
.opt { color: var(--ink-dim); text-transform: none; letter-spacing: 0; font-size: 0.72rem; }
.field input, .field select {
  width: 100%;
  padding: 13px 15px;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input::placeholder { color: #6f6a60; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 168, 28, 0.18);
}
.field input.invalid, .field select.invalid {
  border-color: #e0533e;
  box-shadow: 0 0 0 3px rgba(224, 83, 62, 0.16);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23E6A81C' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.error { display: block; color: #e0795e; font-size: 0.82rem; margin-top: 5px; min-height: 0; }

/* ---------- Grupo de opções de atuação (Militância) ---------- */
.choice-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice { position: relative; cursor: pointer; display: block; }
.choice input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.choice-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
  padding: 12px 12px;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.choice-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.choice-desc { font-size: 0.74rem; color: var(--ink-dim); line-height: 1.25; }
.choice:hover .choice-box { border-color: rgba(230, 168, 28, 0.5); }
.choice input:focus-visible + .choice-box {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 168, 28, 0.18);
}
.choice input:checked + .choice-box {
  border-color: var(--gold);
  background: rgba(230, 168, 28, 0.1);
  box-shadow: 0 0 0 3px rgba(230, 168, 28, 0.18);
}
.choice input:checked + .choice-box .choice-title { color: var(--gold); }
.choice-group.invalid .choice-box {
  border-color: #e0533e;
  box-shadow: 0 0 0 3px rgba(224, 83, 62, 0.16);
}

.optional-divider {
  text-align: center;
  margin: 22px 0 16px;
  position: relative;
  color: var(--ink-dim);
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.optional-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.optional-divider span { position: relative; background: var(--bg-3); padding: 0 14px; }

.hp-field {
  position: absolute;
  left: -5000px;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.phone-input {
  display: flex;
  align-items: stretch;
  background: #0e0d0b;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
.phone-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 168, 28, 0.18);
}
.phone-input.invalid {
  border-color: #e0533e;
  box-shadow: 0 0 0 3px rgba(224, 83, 62, 0.16);
}
.phone-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 12px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.03);
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  user-select: none;
}
.phone-input input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}
.phone-input input:focus {
  box-shadow: none !important;
  outline: none;
}

.field-cep { position: relative; }
.cep-status { display: block; font-size: 0.8rem; margin-top: 5px; min-height: 16px; color: var(--ink-dim); }
.cep-status.loading { color: var(--gold); }
.cep-status.ok { color: #5fbf7d; }
.cep-status.err { color: #e0795e; }
.cep-help { display: inline-block; margin-top: 8px; font-size: 0.82rem; color: var(--gold); border-bottom: 1px dotted var(--gold); }
.cep-help:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 14px 0 4px; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent span { font-size: 0.88rem; color: var(--ink-dim); }
.consent a { color: var(--gold); text-decoration: underline; }

#submit-btn { margin-top: 18px; }
#submit-btn.loading { opacity: 0.7; pointer-events: none; }
.form-foot-note { text-align: center; font-size: 0.8rem; color: var(--ink-dim); margin-top: 14px; }

/* Sucesso */
.success-panel {
  text-align: center;
  padding: clamp(20px, 4vw, 36px) 8px;
  animation: rise 0.45s ease;
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.success-mark { width: 84px; height: 84px; margin: 0 auto 20px; }
.success-mark svg { width: 100%; height: 100%; }
.success-mark circle { stroke: var(--gold); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw 0.6s ease forwards; }
.success-mark path { stroke: var(--gold); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw 0.4s ease 0.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-panel h2, .success-panel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 5vw, 2.4rem); color: var(--gold); margin-bottom: 12px; }
.success-panel p { color: var(--ink-dim); max-width: 380px; margin: 0 auto; }
.success-tease { margin-top: 16px !important; font-style: italic; color: var(--ink) !important; }

.check {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(230, 168, 28, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  animation: check-pop 0.4s ease;
}
@keyframes check-pop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: none; } }

.progress-wrap { max-width: 380px; margin: 26px auto 0; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
#progress-percent { color: var(--gold); font-weight: 600; }
.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.35s ease;
}
.progress-status { margin-top: 10px; font-size: 0.85rem; color: var(--ink-dim); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  width: 100%;
  max-width: 380px;
  padding: 15px 22px;
  border-radius: 12px;
  background: #25D366;
  color: #06210f;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  animation: rise 0.4s ease;
}
.whatsapp-btn:hover { background: #2be374; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34); }

/* ===================================================================
   SEÇÕES COM IMAGEM (media-row)
=================================================================== */
.conviction { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.why { background: var(--bg-2); }

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.media-copy .section-title { text-align: left; }
.media-copy .eyebrow { margin-bottom: 16px; }
.media-copy p { color: var(--ink-dim); font-size: clamp(1.02rem, 2.3vw, 1.16rem); margin: 18px 0 0; }
.media-copy .btn { margin-top: 26px; }
.why-kicker { color: var(--ink) !important; font-weight: 600; font-size: 1.18rem !important; }

.media-frame, .media-photo { width: 100%; max-width: 420px; justify-self: center; }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: auto; display: block; }
.media-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(230, 168, 28, 0.12));
}

@media (max-width: 860px) {
  .media-row { grid-template-columns: 1fr; gap: 30px; }
  .media-copy { text-align: center; }
  .media-copy .section-title { text-align: center; }
  .media-copy p { margin-left: auto; margin-right: auto; max-width: 560px; }
  .media-frame, .media-photo { margin: 0 auto; }
}

/* ===================================================================
   VITÓRIAS
=================================================================== */
.wins { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.win-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.win-card {
  position: relative;
  background: linear-gradient(135deg, rgba(230, 168, 28, 0.08), rgba(230, 168, 28, 0.015));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 26px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.win-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.win-tag {
  display: inline-block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.win-tag-kim { color: var(--gold); background: rgba(230, 168, 28, 0.12); border: 1px solid var(--line); }
.win-tag-minato { color: var(--ink); background: rgba(245, 241, 232, 0.08); border: 1px solid rgba(245, 241, 232, 0.18); }
.win-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230, 168, 28, 0.5);
  display: block;
  margin-bottom: 14px;
}
.win-card h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.win-card p { color: var(--ink-dim); font-size: 0.98rem; }

/* ===================================================================
   CHAMADA FINAL
=================================================================== */
.closing { background: var(--bg); text-align: center; }
.closing-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.closing-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 14px 0 0;
}
.closing-sub { color: var(--ink-dim); font-size: clamp(1rem, 2.3vw, 1.16rem); max-width: 520px; margin: 18px auto 30px; }

/* ===================================================================
   RODAPÉ
=================================================================== */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding: 50px 0 40px; text-align: center; }
.footer-brands { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 22px; }
.footer-kim { height: 34px; width: auto; }
.footer-minato { height: 34px; width: auto; }
.footer-chip img { height: 26px; }
.footer-event { color: var(--ink); font-size: 0.95rem; margin-bottom: 10px; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-legal { color: var(--ink-dim); font-size: 0.8rem; max-width: 540px; margin: 0 auto 14px; }
.footer-legal a { color: var(--gold); text-decoration: underline; }
.footer-copy { color: var(--ink-dim); font-size: 0.82rem; font-family: var(--font-cond); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===================================================================
   MINISTÉRIO / RENAN SANTOS
=================================================================== */
.ministry { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); text-align: center; }
.ministry-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.ministry-lead {
  color: var(--ink-dim);
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  max-width: 720px;
  margin: 18px auto 0;
}
.ministry-lead strong { color: var(--ink); }
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 40px 0 30px;
  text-align: center;
}
.ministry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(230, 168, 28, 0.08), rgba(230, 168, 28, 0.015));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 22px 26px;
}
.ministry-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 18px;
}
.ministry-tag {
  display: inline-block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.ministry-card h3 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ministry-card p { color: var(--ink-dim); font-size: 0.95rem; }
.ministry-kicker { color: var(--ink); font-weight: 600; font-size: 1.1rem; margin: 0 auto 28px; max-width: 620px; }

/* ===================================================================
   RESPONSIVO
=================================================================== */
@media (max-width: 960px) {
  .lead-grid { grid-template-columns: 1fr; gap: 34px; }
  .lead-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .lead-sub { margin-left: auto; margin-right: auto; }
  .lead-hero-art img { max-width: 380px; }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .choice-group { grid-template-columns: 1fr; }
  .choice-box { flex-direction: row; align-items: baseline; gap: 8px; }
  .btn-header { padding: 9px 16px; font-size: 0.78rem; }
  .brand-group { gap: 8px; }
  .menu-toggle { width: 38px; height: 38px; }
  .brand-chip { display: none; }
  .brand-kim { height: 26px; }
  .brand-minato { height: 26px; }
  .lead-hero { padding-top: 104px; }
  .lead-hero-art img { max-width: 320px; }
}

@media (max-width: 380px) {
  .brand-kim { height: 23px; }
  .brand-minato { height: 23px; }
  .brand-sep { height: 18px; }
  .brand { gap: 9px; }
  .btn-header { padding: 8px 13px; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
