/* ---------- Fontes ---------- */
@font-face {
  font-family: "Outfit";
  src: url("/tourday/fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/tourday/fonts/ConfigCondensedRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/tourday/fonts/ConfigCondensedMedium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/tourday/fonts/ConfigCondensedBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/tourday/fonts/ConfigCondensedExtraBold.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --azul-escuro: #003575;
  --azul: #2A5EA8;
  --azul-claro: #79B2C9;
  --creme: #FFFEE6;
  --creme-shade: #F3EED0;
  --amarelo: #EABD2F;
  --amarelo-claro: #F6D65A;
  --amarelo-quente: #E8A526;
  --wa-green: #25D366;

  --font-display: "Config Condensed", "Arial Narrow", sans-serif;
  --font-text: "Outfit", system-ui, sans-serif;

  --container: 1080px;
  --container-narrow: 720px;
  --radius: 22px;
  --radius-lg: 28px;
  --radius-sm: 14px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-back: cubic-bezier(0.34, 1.28, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.5;
  color: var(--azul-escuro);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

/* =========================================================
   HEADER / HERO
   ========================================================= */
.hero {
  background: var(--creme);
  padding: 32px 24px 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* confetti-ish dots pattern bem sutil */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, var(--amarelo) 0 4px, transparent 5px),
    radial-gradient(circle at 92% 12%, var(--azul-claro) 0 5px, transparent 6px),
    radial-gradient(circle at 15% 88%, var(--azul) 0 3px, transparent 4px),
    radial-gradient(circle at 85% 92%, var(--amarelo-claro) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 3%, var(--azul-claro) 0 3px, transparent 4px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.hero__logo-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  animation: fade-down 0.8s var(--ease) both;
}
.hero__logo {
  height: 50px;
  width: auto;
}
.hero__badge {
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px 6px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-3deg) translateY(-1px);
  box-shadow: 2px 2px 0 var(--azul-escuro);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 9.5vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 auto 22px;
  color: var(--azul-escuro);
  max-width: 12ch;
  animation: fade-down 0.9s var(--ease) 0.08s both;
}
.hero__title .line {
  display: block;
}
.hero__title .line--2 {
  font-size: 0.62em;
  font-weight: 700;
  line-height: 1.1;
  max-width: 22ch;
  margin: 14px auto 14px;
  color: color-mix(in srgb, var(--azul-escuro) 88%, transparent);
}
.hero__title .underlined {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--azul-escuro);
}
.hero__title .underlined::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 2px;
  height: 14px;
  background: var(--amarelo);
  z-index: -1;
  border-radius: 4px;
  transform-origin: left center;
  animation: swipe 0.7s var(--ease-out-back) 0.9s both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  animation: fade-down 0.9s var(--ease) 0.3s both;
}

/* ---------- Botões base ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 999px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 4px;
}
.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-back);
}
.btn:hover .btn__icon {
  transform: translate(3px, -3px);
}

.btn--primary {
  background: var(--azul-escuro);
  color: var(--creme);
  box-shadow: 0 3px 0 color-mix(in srgb, var(--azul-escuro) 55%, #000);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 53, 117, 0.35), 0 6px 0 color-mix(in srgb, var(--azul-escuro) 55%, #000);
  background: var(--azul);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--azul-escuro) 55%, #000);
}

.btn--giant {
  padding: 22px 44px;
  font-size: 20px;
  font-weight: 800;
  background: var(--amarelo);
  color: var(--azul-escuro);
  box-shadow: 0 4px 0 var(--amarelo-quente), 0 10px 30px rgba(234, 189, 47, 0.5);
  animation: pulse-soft 2.8s var(--ease) infinite;
}
.btn--giant:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 0 var(--amarelo-quente), 0 16px 40px rgba(234, 189, 47, 0.6);
  animation-play-state: paused;
}
.btn--giant:active { transform: translateY(0) scale(1); }

.btn--ghost {
  background: transparent;
  color: var(--azul-escuro);
  border: 2px dashed color-mix(in srgb, var(--azul-escuro) 30%, transparent);
  font-weight: 600;
  padding: 12px 20px;
  font-size: 14px;
}
.btn--ghost:hover {
  background: color-mix(in srgb, var(--azul-escuro) 6%, transparent);
  border-color: var(--azul-escuro);
}

.btn--wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 3px 0 var(--wa-green-dark, #1FB855);
}
.btn--wa:hover {
  transform: translateY(-3px);
  background: #1FB855;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35), 0 6px 0 #1a9e47;
}
.btn--wa:active { transform: translateY(0); box-shadow: 0 1px 0 #1a9e47; }

/* ---------- Scroll cue (hero) ---------- */
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 54px;
  color: color-mix(in srgb, var(--azul-escuro) 80%, transparent);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
  animation: fade-down 0.9s var(--ease) 0.55s both;
}
.scroll-cue:hover { color: var(--azul-escuro); }
.scroll-cue__text {
  border-bottom: 1.8px dashed color-mix(in srgb, var(--azul-escuro) 40%, transparent);
  padding-bottom: 3px;
}
.scroll-cue__chevron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul-escuro);
  color: var(--creme);
  display: grid;
  place-items: center;
  animation: bounce-down 1.8s var(--ease) infinite;
}
.scroll-cue__chevron svg { width: 22px; height: 22px; }
.scroll-cue:hover .scroll-cue__chevron {
  background: var(--amarelo);
  color: var(--azul-escuro);
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ---------- CTA de suporte (final estilo SAC) ---------- */
.support-cta {
  background: var(--creme);
  padding: 56px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px dashed color-mix(in srgb, var(--azul-escuro) 12%, transparent);
}
.support-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.support-cta__inner {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.support-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 46px);
  line-height: 1;
  margin: 0 0 10px;
  color: var(--azul-escuro);
}
.support-cta__lead {
  font-size: 16px;
  margin: 0 0 28px;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
}
.support-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAB WhatsApp ---------- */
.wa-fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.wa-fab {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease-out-back), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: visible;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.45;
  z-index: -1;
  animation: wa-ping 2.4s ease-out infinite;
}
.wa-fab:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 14px rgba(0, 0, 0, 0.25);
}
.wa-fab:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 4px;
}
.wa-fab__icon { width: 32px; height: 32px; }
.wa-fab__dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--amarelo);
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.wa-fab__tip {
  pointer-events: none;
  background: var(--creme);
  color: var(--azul-escuro);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.35;
  padding: 11px 14px 10px;
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-out-back);
  position: relative;
  border: 0;
  cursor: default;
}
.wa-fab__tip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-fab__tip::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--creme);
  transform: rotate(45deg);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.06);
}

@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.5; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-fab-wrap { right: 14px; bottom: 14px; }
  .wa-fab { width: 54px; height: 54px; }
  .wa-fab__icon { width: 28px; height: 28px; }
  .wa-fab__tip { font-size: 12.5px; max-width: 200px; }
  .scroll-cue { margin-top: 40px; }
}

/* ---------- Countdown ---------- */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-text);
  font-size: 14px;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--azul-escuro) 6%, transparent);
  border-radius: 999px;
}
.countdown__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--azul-escuro);
  background: var(--creme);
  padding: 4px 12px;
  border-radius: 10px;
  line-height: 1;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--azul-escuro) 12%, transparent);
  min-width: 50px;
  text-align: center;
  letter-spacing: -0.02em;
}
.countdown__sep {
  color: color-mix(in srgb, var(--azul-escuro) 35%, transparent);
  font-weight: 600;
}

/* =========================================================
   ONDAS
   ========================================================= */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { width: 100%; height: 72px; display: block; }

/* =========================================================
   SEÇÃO: O QUE VAI ROLAR (grid de pilares)
   ========================================================= */
.pillars {
  background: var(--azul-escuro);
  color: var(--creme);
  padding: 40px 20px 72px;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.pillars__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--amarelo);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  max-width: 14ch;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ---------- Ticket card (usado em vários lugares) ---------- */
.ticket {
  --notch: 14px;
  background: var(--creme);
  color: var(--azul-escuro);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
  transition: transform 0.3s var(--ease-out-back);
  -webkit-mask:
    radial-gradient(circle var(--notch) at 0 50%, transparent 98%, #000 100%) left / 50.1% 100% no-repeat,
    radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, #000 100%) right / 50.1% 100% no-repeat;
          mask:
    radial-gradient(circle var(--notch) at 0 50%, transparent 98%, #000 100%) left / 50.1% 100% no-repeat,
    radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, #000 100%) right / 50.1% 100% no-repeat;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}
.pillar__icon-wrap {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--amarelo) 28%, transparent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.pillar__icon {
  width: 28px;
  height: 28px;
  color: var(--azul-escuro);
}
.pillar__title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}
.pillar__desc {
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
}
.pillar--spoiler {
  background: linear-gradient(135deg, var(--creme) 0%, color-mix(in srgb, var(--amarelo) 18%, var(--creme)) 100%);
  color: var(--azul-escuro);
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 2.5px solid var(--amarelo);
  box-shadow: 0 6px 0 color-mix(in srgb, var(--amarelo-quente) 55%, transparent),
              0 14px 40px rgba(0, 53, 117, 0.12);
  margin-top: 10px;
}
@media (min-width: 900px) {
  .pillar--spoiler {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
  }
}
.pillar--spoiler::before {
  /* confete sutil ao fundo — pontinhos amarelos */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 94% 18%, var(--amarelo) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 82%, var(--azul-claro) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 42%, var(--amarelo-claro) 0 2.5px, transparent 3.5px);
  opacity: 0.4;
  pointer-events: none;
}
.pillar--spoiler .pillar__head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  max-width: 320px;
}
.pillar--spoiler .pillar__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--azul-escuro);
  color: var(--amarelo);
  margin: 0;
  border-radius: 16px;
  transform: rotate(-6deg);
  box-shadow: 3px 4px 0 color-mix(in srgb, var(--azul-escuro) 40%, transparent);
  flex-shrink: 0;
}
.pillar--spoiler .pillar__icon { color: var(--amarelo); width: 34px; height: 34px; }
.pillar--spoiler .pillar__eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amarelo-quente);
  margin: 0 0 6px;
  line-height: 1;
}
.pillar--spoiler .pillar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 0.95;
  margin: 0;
  color: var(--azul-escuro);
  letter-spacing: -0.015em;
}
.pillar--spoiler .pillar__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pillar--spoiler .pillar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pillar--spoiler .pillar__chip {
  display: inline-block;
  background: var(--azul-escuro);
  color: var(--creme);
  font-weight: 700;
  font-size: 15.5px;
  padding: 10px 18px 9px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  transition: transform 0.2s var(--ease-out-back), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 2px 0 color-mix(in srgb, var(--azul-escuro) 55%, #000);
}
.pillar--spoiler .pillar__chip:hover {
  background: var(--amarelo-quente);
  color: var(--azul-escuro);
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 5px 0 color-mix(in srgb, var(--amarelo-quente) 55%, #000);
}
.pillar--spoiler .pillar__more {
  font-size: 14px;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
  margin: 0;
  font-style: italic;
}

/* =========================================================
   BLOQUINHO — destaque 1-de-1
   ========================================================= */
.blocuinho {
  background: var(--azul-escuro);
  padding: 0 20px 80px;
  position: relative;
  z-index: 1;
}
.blocuinho__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.blocuinho__card {
  background: var(--creme);
  color: var(--azul-escuro);
  border-radius: var(--radius-lg);
  padding: 44px 32px 36px;
  position: relative;
  transform: rotate(-1.5deg);
  box-shadow:
    0 18px 0 color-mix(in srgb, var(--azul-escuro) 40%, #000),
    0 28px 60px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}
.blocuinho__card::before {
  /* perfuração pontilhada vertical nas laterais */
  content: "";
  position: absolute;
  inset: 20px 0;
  background-image:
    radial-gradient(circle at 12px 8px, color-mix(in srgb, var(--azul-escuro) 22%, transparent) 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 12px) 8px, color-mix(in srgb, var(--azul-escuro) 22%, transparent) 2px, transparent 3px);
  background-size: 1px 16px, 1px 16px;
  background-position: 12px 0, calc(100% - 12px) 0;
  background-repeat: repeat-y;
  pointer-events: none;
}
.blocuinho__stamp {
  position: absolute;
  top: -22px;
  right: 20px;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px 7px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 2px 3px 0 var(--azul-escuro);
  z-index: 2;
}
.blocuinho__over {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 15px;
  color: color-mix(in srgb, var(--azul-escuro) 70%, transparent);
  margin: 0 0 6px;
}
.blocuinho__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.blocuinho__title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, var(--amarelo) 62%, var(--amarelo) 92%, transparent 92%);
  padding: 0 4px;
}
.blocuinho__stats {
  display: flex;
  gap: 28px;
  margin: 0 0 30px;
  flex-wrap: wrap;
}
.blocuinho__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blocuinho__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--azul-escuro);
  letter-spacing: -0.02em;
}
.blocuinho__stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--azul-escuro) 65%, transparent);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.blocuinho__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 18px;
  border-top: 2px dashed color-mix(in srgb, var(--azul-escuro) 25%, transparent);
}
.blocuinho__price-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--azul-escuro) 70%, transparent);
  margin-right: 6px;
}
.blocuinho__price-rs {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--azul-escuro);
}
.blocuinho__price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 62px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--azul-escuro);
}
.blocuinho__price-note {
  display: block;
  font-size: 12.5px;
  margin-top: 10px;
  color: color-mix(in srgb, var(--azul-escuro) 65%, transparent);
  font-style: italic;
}

.blocuinho__discount {
  margin-top: 16px;
  padding: 16px 18px 18px;
  background: color-mix(in srgb, var(--amarelo) 30%, var(--creme));
  border: 2px dashed color-mix(in srgb, var(--azul-escuro) 25%, transparent);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blocuinho__discount-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.blocuinho__discount-minus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--amarelo-quente);
  line-height: 1;
}
.blocuinho__discount-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--azul-escuro);
  letter-spacing: -0.01em;
}
.blocuinho__discount-tag {
  font-size: 13.5px;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
  font-weight: 500;
}
.blocuinho__discount-final {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 10px;
  border-top: 1.5px dashed color-mix(in srgb, var(--azul-escuro) 30%, transparent);
}
.blocuinho__discount-final-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--azul-escuro) 75%, transparent);
}
.blocuinho__discount-final-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--azul-escuro);
  letter-spacing: -0.015em;
  line-height: 1;
}

/* =========================================================
   QUANDO E ONDE
   ========================================================= */
.info {
  background: var(--creme);
  padding: 56px 20px 72px;
  position: relative;
}
.info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.info__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .info__grid { grid-template-columns: 1fr 1.3fr; gap: 22px; }
}
.info-card {
  background: var(--azul-escuro);
  color: var(--creme);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  position: relative;
  overflow: hidden;
}
.info-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--amarelo);
}
.info-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin: 0 0 8px;
}
.info-card__main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.info-card__sub {
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--creme) 82%, transparent);
  margin: 0;
}
.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--amarelo);
  border-bottom: 1px dashed color-mix(in srgb, var(--amarelo) 60%, transparent);
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease);
}
.info-card__link:hover { gap: 10px; }

/* =========================================================
   CTA GRANDE
   ========================================================= */
.final-cta {
  background: var(--azul-escuro);
  color: var(--creme);
  padding: 80px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 300px at 50% 0%, color-mix(in srgb, var(--amarelo) 14%, transparent), transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--creme);
}
.final-cta__title em {
  font-style: normal;
  color: var(--amarelo);
}
.final-cta__lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 36px;
  color: color-mix(in srgb, var(--creme) 85%, transparent);
}
.final-cta__note {
  margin-top: 22px;
  font-size: 13px;
  color: color-mix(in srgb, var(--creme) 60%, transparent);
  letter-spacing: 0.04em;
}

/* =========================================================
   FAQ MINI
   ========================================================= */
.faq-mini {
  background: var(--creme);
  padding: 60px 20px 80px;
  position: relative;
}
.faq-mini__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-mini__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin: 0 0 24px;
  text-align: center;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1.5px solid color-mix(in srgb, var(--azul-escuro) 14%, transparent);
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] {
  border-color: var(--amarelo);
  background: color-mix(in srgb, var(--amarelo) 10%, #fff);
}
.faq-item__q {
  list-style: none;
  padding: 16px 50px 16px 20px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  user-select: none;
  outline: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--azul-escuro);
  transition: transform 0.3s var(--ease-out-back);
}
.faq-item[open] .faq-item__q::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--amarelo-quente);
}
.faq-item__a {
  padding: 0 50px 18px 20px;
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--azul-escuro) 82%, transparent);
  animation: fade-in 0.3s var(--ease) both;
}
.faq-mini__link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--azul-escuro);
  border-bottom: 2px dashed color-mix(in srgb, var(--azul-escuro) 35%, transparent);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.faq-mini__link:hover { color: var(--amarelo-quente); border-bottom-color: var(--amarelo-quente); }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer {
  background: var(--azul-escuro);
  color: var(--creme);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
}
.footer__inner { max-width: var(--container-narrow); margin: 0 auto; }
.footer__logo {
  height: 52px;
  width: auto;
  margin: 0 auto 20px;
  opacity: 0.95;
}
.footer__contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s var(--ease);
}
.footer__contact a:hover { opacity: 0.65; }
.footer__copy {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer__legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--creme) 15%, transparent);
  opacity: 0.65;
}
.footer__legal p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.footer__legal p:last-child { margin-bottom: 0; }

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes swipe {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsividade fina */
@media (max-width: 480px) {
  .hero { padding: 24px 20px 64px; }
  .hero__logo { height: 42px; }
  .hero__badge { font-size: 12px; padding: 6px 10px; }
  .btn--giant { padding: 18px 28px; font-size: 17px; }
  .blocuinho__card { padding: 36px 22px 28px; transform: rotate(-1deg); }
  .blocuinho__stamp { right: 14px; font-size: 11px; padding: 6px 12px; }
  .info-card { padding: 24px 22px 26px; }
  .final-cta { padding: 64px 20px 72px; }
}
