:root {
  --color-dark-100: #050505;
  --color-dark-200: #0B1020;
  --color-dark-300: #121218;
  --color-light-100: #FCFAF6;
  --color-light-200: #F6F1E8;
  --color-light-300: #EFE6D4;
  --champagne-white: #FCFAF6;
  --champagne-light: #F6F1E8;
  --champagne-gold: #EFE4D2;
  --soft-gold: #C99A3D;
  --color-gold-main: #C99A3D;
  --color-gold-light: #E0B24A;
  --color-gold-dark: #8A6428;
  --color-gold-brilliant: #F9D05F;
  --color-whatsapp: #25D366;
  --text-dark-title: #FFFFFF;
  --text-dark-body: #D6D9E0;
  --text-dark-muted: #A0AEC0;
  --text-light-title: #111111;
  --text-light-body: #3E4756;
  --text-light-muted: #6B7280;
  --container-width: 1100px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-dark: 0 8px 30px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; background: var(--color-dark-100); color: var(--text-dark-body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s ease; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

.dark-bg { background: var(--color-dark-100); color: var(--text-dark-body); }
.dark-bg .section-title { color: var(--text-dark-title); }
.light-bg { background: linear-gradient(180deg, var(--color-light-100), var(--color-light-200)); color: var(--text-light-body); }
.light-bg .section-title { color: var(--text-light-title); }

.divider-dark-to-light { height: 30px; background: linear-gradient(180deg, var(--color-dark-100), var(--color-light-100)); }
.divider-light-to-dark { height: 30px; background: linear-gradient(180deg, var(--color-light-200), var(--color-dark-100)); }

.section-title { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { text-align: center; font-size: 1rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: .8; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.gold-text { color: var(--color-gold-main); }
.red-text { color: #e53e3e; }
section { padding: 3rem 0; position: relative; }

/* Botões */
.btn-primary { display: inline-block; background: var(--color-gold-main); color: var(--color-dark-100); padding: 1rem 1.5rem; font-weight: 800; border-radius: var(--border-radius); text-transform: uppercase; letter-spacing: .5px; border: none; cursor: pointer; text-align: center; width: 100%; }
.btn-primary:hover { background: var(--color-gold-light); transform: translateY(-2px); }
.btn-gold-premium { background: linear-gradient(90deg, var(--color-gold-main), var(--color-gold-brilliant), var(--color-gold-main)); background-size: 200% auto; color: #000; box-shadow: 0 4px 15px rgba(201,154,61,.4); animation: shine 3s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }
.btn-secondary { display: inline-block; background: transparent; color: var(--text-dark-title); padding: 1rem 1.5rem; font-weight: 700; border-radius: var(--border-radius); border: 1px solid var(--text-dark-muted); text-align: center; width: 100%; }
.btn-outline-whatsapp { border: 1px solid var(--color-whatsapp); color: var(--color-whatsapp); padding: .4rem .8rem; border-radius: 4px; font-weight: 600; font-size: .85rem; }
.btn-whatsapp-full { display: block; width: 100%; background: var(--color-whatsapp); color: #fff; text-align: center; padding: 1rem; border-radius: var(--border-radius); font-weight: 800; font-size: 1rem; }
.floating-whatsapp {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--color-whatsapp); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; text-decoration: none;
  box-shadow:
    0 0 12px rgba(37,211,102,.6),
    0 0 30px rgba(37,211,102,.3),
    0 4px 14px rgba(0,0,0,.15);
  animation: wppShake 6s ease-in-out infinite;
  transition: box-shadow .2s, transform .2s;
}
.floating-whatsapp:hover {
  box-shadow:
    0 0 18px rgba(37,211,102,.8),
    0 0 40px rgba(37,211,102,.4),
    0 6px 20px rgba(0,0,0,.18);
  transform: scale(1.08);
}
@keyframes wppShake {
  0%, 8%, 100% { transform: translateX(0); }
  1%  { transform: translateX(-4px) rotate(-3deg); }
  2%  { transform: translateX(4px) rotate(3deg); }
  3%  { transform: translateX(-3px) rotate(-2deg); }
  4%  { transform: translateX(3px) rotate(2deg); }
  5%  { transform: translateX(-1px) rotate(-1deg); }
  6%  { transform: translateX(0); }
}
/* Notification badge */
.wpp-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px;
  background: #E53935; color: #fff;
  font-size: 11px; font-weight: 900; line-height: 20px;
  text-align: center; font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 6px rgba(229,57,53,.5);
  display: none;
  animation: badgePop .35s cubic-bezier(.2,1.2,.4,1);
}
.wpp-badge.visible { display: block; }
@keyframes badgePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

/* Header */
.main-header { background: #000000; padding: .8rem 0; border-bottom: 1px solid var(--color-dark-300); position: fixed; top: 0; width: 100%; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; }

/* --- Logo Icon (Transparent Square) + Text --- */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { display: block; object-fit: contain; }

/* Sizes for the golden square icon */
.logo-img-header { height: 40px; }
.logo-img-video { height: 60px; margin: 0 auto .5rem; }
.logo-img-modal { height: 50px; margin: 0 auto 1rem; }
.logo-img-modal-footer { height: 45px; margin: 0 auto 1rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.logo-img-footer { height: 45px; }
.footer-mobile-compact { display: flex; flex-direction: column; align-items: center; }
.logo-img-footer-mobile { height: 40px; margin: 0 auto .8rem; }

.logo strong { display: block; color: var(--color-gold-main); font-size: 1rem; line-height: 1; }
.logo span { font-size: .6rem; color: var(--text-dark-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ==========================================================================
   MARCA VARGAS & VARGAS (HTML/SVG)
   ========================================================================== */
.vv-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent !important;
  text-decoration: none;
  line-height: 1;
}

.vv-brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 4vw, 62px);
  height: clamp(42px, 4vw, 62px);
  flex: 0 0 auto;
  background: transparent !important;
}

.vv-brand-symbol-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  background: transparent !important;
}

.vv-brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
}

.vv-brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: #D4AF37;
  white-space: nowrap;
}

.vv-brand-text small {
  display: block;
  font-family: Inter, Arial, system-ui, sans-serif;
  font-size: clamp(0.55rem, 0.8vw, 0.76rem);
  line-height: 1;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.82);
  white-space: nowrap;
}

/* Variação para fundo claro */
.vv-brand-lockup.on-light .vv-brand-text strong {
  color: #B8860B;
}

.vv-brand-lockup.on-light .vv-brand-text small {
  color: rgba(17, 17, 17, 0.62);
}

/* Variação para fundo escuro */
.vv-brand-lockup.on-dark .vv-brand-text strong {
  color: #D4AF37;
}

.vv-brand-lockup.on-dark .vv-brand-text small {
  color: rgba(245, 241, 232, 0.82);
}

@media (max-width: 768px) {
  .vv-brand-lockup {
    gap: 0.55rem;
  }

  .vv-brand-symbol {
    width: 42px;
    height: 42px;
  }

  .vv-brand-text strong {
    font-size: 1.05rem;
  }

  .vv-brand-text small {
    font-size: 0.48rem;
    letter-spacing: 0.22em;
  }
}

/* ==========================================================================
   RESULT MODAL TOP ACTIONS
   ========================================================================== */
.result-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.result-modal-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.result-action-btn,
.result-close-btn {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255,255,255,0.03);
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.result-close-btn {
  width: 36px;
  padding: 0;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .result-modal-top {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .result-modal-actions {
    gap: 0.35rem;
  }

  .result-action-btn {
    font-size: 0;
    width: 36px;
    padding: 0;
  }

  .result-action-btn::before {
    font-size: 0.95rem;
  }

  .result-action-btn:nth-child(1)::before {
    content: "⬇";
  }

  .result-action-btn:nth-child(2)::before {
    content: "↗";
  }
}
/* =============================================
   1. HERO LIGHT — Contracheque + Reticle
   ============================================= */
.hero-gram-light {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    /* warm golden glow near contracheque area */
    radial-gradient(ellipse at 72% 40%, rgba(201,154,61,.09), transparent 50%),
    /* subtle warm spot bottom-left for balance */
    radial-gradient(ellipse at 25% 75%, rgba(201,154,61,.05), transparent 45%),
    /* faint golden haze top-center */
    radial-gradient(ellipse at 50% 15%, rgba(212,175,55,.04), transparent 40%),
    /* bege stain near bottom-right (dossier feel) */
    radial-gradient(ellipse at 80% 85%, rgba(180,155,110,.08), transparent 35%),
    /* main champagne gradient */
    linear-gradient(180deg, #FCFAF6 0%, #F6F1E8 45%, #EFE5D7 100%);
}

/* Paper texture overlay */
.hero-texture {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    /* fine horizontal ruled lines */
    repeating-linear-gradient(0deg,
      transparent, transparent 38px,
      rgba(160,140,100,.03) 38px, rgba(160,140,100,.03) 39px),
    /* fine vertical ruled lines */
    repeating-linear-gradient(90deg,
      transparent, transparent 52px,
      rgba(160,140,100,.02) 52px, rgba(160,140,100,.02) 53px);
  opacity: .7;
}

/* Warm shadow vignette — darker near bottom-right of contracheque */
.hero-vignette {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    /* shadow under/behind contracheque */
    radial-gradient(ellipse at 78% 65%, rgba(60,49,28,.10), transparent 40%),
    /* soft edge shadow bottom-right corner */
    radial-gradient(ellipse at 95% 90%, rgba(110,92,58,.08), transparent 35%),
    /* very subtle overall top-to-bottom warmth */
    linear-gradient(180deg, transparent 40%, rgba(180,155,110,.04) 100%);
}

/* Light beams */
.hero-beam {
  position: absolute;
  width: 130%; height: 55px;
  pointer-events: none; z-index: 0;
  filter: blur(18px); opacity: 0;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,.12), rgba(212,175,55,.08), rgba(255,255,255,.10), transparent);
}
.hero-beam-1 { top: 25%; left: -20%; transform: rotate(-12deg); animation: heroBeam 8s ease-in-out 1s infinite; }
.hero-beam-2 { top: 58%; left: -20%; transform: rotate(-18deg); animation: heroBeam 10s ease-in-out 3.5s infinite; }
.hero-beam-3 { top: 42%; left: -20%; transform: rotate(-8deg);  animation: heroBeam 12s ease-in-out 6s infinite; height: 40px; }
@keyframes heroBeam {
  0%   { opacity: 0; transform: rotate(-12deg) translateX(-60%); }
  35%  { opacity: .12; }
  65%  { opacity: .06; }
  100% { opacity: 0; transform: rotate(-12deg) translateX(60%); }
}

/* ---- Inner: 2-row grid ---- */
.hero-gram-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 2.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem clamp(1rem, 2vw, 1.5rem);
}
.hero-gram-copy { grid-column: 1; grid-row: 1; align-self: center; }
.hero-gram-art  { grid-column: 2; grid-row: 1; align-self: center; }
.hero-gram-bottom { grid-column: 1 / -1; grid-row: 2; }

/* ---- LEFT: Copy ---- */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .3rem .8rem; border-radius: 999px;
  background: rgba(201,154,61,.12);
  border: 1px solid rgba(201,154,61,.25);
  color: var(--color-gold-dark);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .10em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.hero-kicker svg { color: var(--color-gold-main); flex-shrink: 0; }

/* Headline elements */
.headline-mobile { display: none; }
.headline-desktop { display: inline; white-space: nowrap; }

.hero-gram-headline {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 900; line-height: 1.02;
  letter-spacing: -.04em;
  color: #050505;
  margin: 0;
}
.hero-gold { color: var(--color-gold-main); }

/* ---- Bottom row ---- */
.hero-gram-bottom {
  padding-top: clamp(.8rem, 2vw, 1.2rem);
}
.hero-gram-sub {
  font-size: clamp(.86rem, 1.6vw, 1.05rem);
  line-height: 1.55; color: #4B5563;
  margin: 0 0 1.1rem;
  max-width: 50%;
}

/* ---- Buttons ---- */
.hero-gram-actions {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1rem;
}
.hero-primary-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .85rem 1.5rem;
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505; font-weight: 900; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 12px 28px rgba(201,154,61,.22), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.hero-primary-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,154,61,.3); }
.hero-primary-cta::after {
  content: ""; position: absolute; top: 0; left: 200%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), rgba(255,240,150,.8), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}
@keyframes shine-sweep-gold {
  0%   { left: -60%; }
  100% { left: 130%; }
}
.hero-secondary-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .7rem 1.3rem;
  background: transparent;
  color: #1a1a1a; font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .03em;
  border: 1.5px solid rgba(0,0,0,.16);
  border-radius: 12px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.hero-secondary-cta:hover { border-color: var(--color-gold-main); background: rgba(201,154,61,.06); }
.hero-secondary-cta svg:first-child { color: var(--color-gold-main); }

/* ---- Trust items ---- */
.hero-trust-items {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
}
.hero-trust {
  display: flex; align-items: center; gap: 5px;
  font-size: .62rem; font-weight: 600;
  color: #6B7280; line-height: 1.3;
}
.hero-trust svg { color: var(--color-gold-main); flex-shrink: 0; }

/* ---- RIGHT: Contracheque Paper Card ---- */
.hero-gram-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.hc-paper {
  width: 100%; max-width: 380px;
  padding: 1.6rem 1.4rem;
  border-radius: 12px;
  transform: rotate(3.5deg);
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #FDFBF7 0%, #F5F0E6 50%, #EDE6D6 100%);
  border: 1px solid rgba(200,185,155,.25);
  box-shadow:
    0 25px 55px rgba(0,0,0,.10),
    0 8px 20px rgba(0,0,0,.06),
    0 0 0 1px rgba(0,0,0,.02);
}
.hc-head {
  font-size: 1.15rem; font-weight: 900;
  color: #1a1205;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.hc-divider {
  height: 1px;
  background: rgba(0,0,0,.10);
  margin: .3rem 0;
}
.hc-cat {
  font-size: .6rem; font-weight: 800;
  color: #7a6a50; letter-spacing: .10em;
  text-transform: uppercase;
  padding: .3rem 0;
}
.hc-row {
  padding: .45rem .5rem;
  font-size: .78rem; color: #4a3f30;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-weight: 500;
}
.hc-gram-row {
  background: linear-gradient(90deg, #D4AF37, #F0C75E);
  color: #1a1000;
  font-weight: 900;
  border-radius: 5px;
  border-bottom: none;
  margin: 3px 0;
  padding: .5rem .6rem;
  box-shadow: 0 2px 8px rgba(212,175,55,.3);
}
.hc-spacer { height: .6rem; }
.hc-total {
  font-size: .85rem; font-weight: 800;
  color: #2a2215;
  padding: .4rem .5rem 0;
}

/* ---- Scope / Mira (premium) ---- */
.scope {
  --scope-size: clamp(260px, 32vw, 400px);
  position: absolute;
  left: 50%; top: 50%;
  width: var(--scope-size);
  height: var(--scope-size);
  z-index: 8;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: scopePulse 2.3s ease-in-out infinite;
  filter:
    drop-shadow(0 0 4px rgba(255, 225, 0, .55))
    drop-shadow(0 0 14px rgba(255, 212, 0, .22));
}
.scope-ring {
  position: absolute; inset: 0;
  border: clamp(4px, .65vw, 7px) solid #ffd400;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,150,.3) inset,
    0 0 10px rgba(255,212,0,.4),
    0 0 28px rgba(255,212,0,.14);
}
.scope-ring::before,
.scope-ring::after {
  content: ""; position: absolute;
  border: 1px solid rgba(255, 212, 0, .45);
  border-radius: 50%;
}
.scope-ring::before { inset: 18%; }
.scope-ring::after  { inset: 34%; opacity: .55; }

.scope-h, .scope-v {
  position: absolute;
  left: 50%; top: 50%;
  background: #ffd400;
  box-shadow:
    0 0 5px rgba(255, 230, 0, .5),
    0 0 14px rgba(255, 212, 0, .2);
  border-radius: 999px;
}
.scope-h {
  width: 154%; height: clamp(5px, .55vw, 8px);
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,212,0,.32) 6%, #ffd400 18%,
    #fff35a 50%, #ffd400 82%, rgba(255,212,0,.32) 94%, transparent 100%);
}
.scope-v {
  width: clamp(5px, .55vw, 8px); height: 154%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg,
    transparent 0%, rgba(255,212,0,.32) 6%, #ffd400 18%,
    #fff35a 50%, #ffd400 82%, rgba(255,212,0,.32) 94%, transparent 100%);
}
.scope-center {
  position: absolute; left: 50%; top: 50%;
  width: 15px; height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffd400;
  box-shadow:
    0 0 6px rgba(255,245,100,.5),
    0 0 16px rgba(255,212,0,.2);
}

/* Tick marks */
.tick {
  position: absolute; display: block;
  background: #ffd400; border-radius: 999px;
  box-shadow:
    0 0 3px rgba(255, 230, 0, .5),
    0 0 8px rgba(255, 212, 0, .2);
}
.tick.x { top: 50%; width: 4px; height: 25px; transform: translate(-50%, -50%); }
.tick.y { left: 50%; width: 25px; height: 4px; transform: translate(-50%, -50%); }
.tick.x:nth-of-type(1) { left: 34%; }
.tick.x:nth-of-type(2) { left: 40%; }
.tick.x:nth-of-type(3) { left: 46%; }
.tick.x:nth-of-type(4) { left: 54%; }
.tick.x:nth-of-type(5) { left: 60%; }
.tick.x:nth-of-type(6) { left: 66%; }
.tick.y:nth-of-type(7)  { top: 34%; }
.tick.y:nth-of-type(8)  { top: 40%; }
.tick.y:nth-of-type(9)  { top: 46%; }
.tick.y:nth-of-type(10) { top: 54%; }
.tick.y:nth-of-type(11) { top: 60%; }
.tick.y:nth-of-type(12) { top: 66%; }

@keyframes scopePulse {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: .92; }
  30%  { transform: translate(-50%, -50%) scale(.82);   opacity: .78; }
  58%  { transform: translate(-50%, -50%) scale(1.08);  opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1);    opacity: .92; }
}

/* ---- DESKTOP ---- */
@media (min-width: 769px) {
  .hero-gram-actions { flex-direction: row; }
  .hero-primary-cta { width: auto; }
  .hero-secondary-cta { width: auto; }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hero-gram-light { padding-top: 64px; }

  .hero-gram-inner {
    grid-template-columns: 55% 45%;
    gap: 0 .4rem;
    padding: .8rem .8rem .6rem;
  }
  .hero-gram-copy { align-self: start; }
  .hero-gram-art  { align-self: start; padding-top: 1.8rem; }

  .hero-kicker { margin-bottom: .4rem; font-size: .52rem; padding: .22rem .6rem; }

  .headline-mobile { display: inline; }
  .headline-desktop { display: none; }

  .hero-gram-headline {
    font-size: clamp(1.5rem, 7.5vw, 2.1rem);
    line-height: 1.04;
    margin: 0 0 .6rem;
  }

  .hc-paper {
    max-width: 200px;
    padding: .7rem .6rem;
    border-radius: 8px;
    transform: rotate(4deg);
  }
  .hc-head { font-size: .72rem; margin-bottom: .2rem; }
  .hc-divider { margin: .2rem 0; }
  .hc-cat { font-size: .38rem; padding: .2rem 0; }
  .hc-row { padding: .22rem .25rem; font-size: .48rem; }
  .hc-gram-row { padding: .28rem .3rem; font-size: .46rem; border-radius: 3px; }
  .hc-spacer { height: .3rem; }
  .hc-total { font-size: .52rem; padding: .2rem .25rem 0; }

  .scope { --scope-size: 190px; }

  .hero-vignette {
    background:
      /* darker shadow under/behind contracheque */
      radial-gradient(ellipse at 85% 85%, rgba(40,28,10,.35), transparent 50%),
      /* soft edge shadow bottom-right corner */
      radial-gradient(ellipse at 95% 90%, rgba(110,92,58,.15), transparent 35%),
      /* general left border burn */
      linear-gradient(90deg, rgba(30,20,5,.05) 0%, transparent 15%);
  }

  .hero-gram-bottom { padding-top: 0; margin-top: 0; }
  .hero-gram-sub {
    font-size: .74rem; line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 50%;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .hero-gram-actions { gap: .45rem; margin-bottom: .5rem; }
  .hero-primary-cta {
    padding: .65rem .9rem; font-size: .7rem;
    border-radius: 10px;
  }
  .hero-secondary-cta {
    padding: .5rem .7rem; font-size: .7rem;
    border-radius: 10px;
  }

  .hero-trust-items { gap: .5rem; }
  .hero-trust { font-size: .52rem; }
  .hero-trust svg { width: 12px; height: 12px; }

  .hero-beam { display: none; }
}

/* Vídeo — seção premium tática/jurídica */
.bloco-video {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(201,154,61,.18), transparent 34%),
    linear-gradient(180deg, var(--champagne-white) 0%, var(--champagne-light) 55%, var(--champagne-gold) 100%);
}

/* Textura grid tática/documental */
.bloco-video::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(120,90,40,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,90,40,.035) 1px, transparent 1px),
    radial-gradient(circle at 8% 78%, rgba(40,35,25,.16), transparent 28%);
  background-size: 42px 42px, 42px 42px, auto;
  z-index: 0;
}
/* Feixes de luz dourada na diagonal */
.bloco-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    linear-gradient(115deg, 
      transparent 15%, 
      rgba(201,154,61,0.02) 20%, 
      rgba(201,154,61,0.09) 25%, 
      transparent 32%),
    linear-gradient(115deg, 
      transparent 45%, 
      rgba(201,154,61,0.015) 48%, 
      rgba(201,154,61,0.06) 52%, 
      transparent 58%),
    linear-gradient(115deg, 
      transparent 72%, 
      rgba(201,154,61,0.03) 76%, 
      rgba(201,154,61,0.12) 80%, 
      transparent 88%);
}

/* Silhueta policial — lado esquerdo */
.video-police-watermark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  opacity: .16;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(120,90,40,.18) 100%),
    url("/images/hero_pm_bg.png");
  background-size: cover;
  background-position: center bottom;
  filter: sepia(1) saturate(.6) brightness(1.1) contrast(.9);
  mix-blend-mode: multiply;
  mask-image: radial-gradient(circle at 30% 80%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 80%, black 0%, transparent 72%);
}

/* Conteúdo acima dos elementos decorativos */
.bloco-video .container,
.bloco-video .video-container,
.bloco-video .section-title,
.bloco-video .section-subtitle {
  position: relative;
  z-index: 2;
}

/* Ícone pilares jurídicos */
.video-icon-top {
  text-align: center;
  margin-bottom: .6rem;
  color: var(--color-gold-main);
  position: relative;
  z-index: 2;
}

.bloco-video .section-title {
  color: #1A1A1A;
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -.03em;
}

.bloco-video .section-subtitle {
  color: #5a584f;
  opacity: 1;
  margin-bottom: .8rem;
  font-size: clamp(.9rem, 2.5vw, 1.15rem);
}

/* Feature pills */
.video-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.video-feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  letter-spacing: .02em;
}

.video-feature svg {
  color: var(--color-gold-main);
  flex-shrink: 0;
}

.video-feature-divider {
  color: rgba(139,100,40,.3);
  font-size: .85rem;
}

/* Container do vídeo — premium com anel dourado */
.video-container {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,154,61,.72);
  background: #090909;
  box-shadow:
    0 28px 80px rgba(0,0,0,.22),
    0 0 0 8px rgba(201,154,61,.055);
  z-index: 2;
}

.video-aspect-ratio { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.play-button {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px;
  background: linear-gradient(135deg, rgba(201,154,61,.92), rgba(218,180,91,.92));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.play-button:hover { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.play-button svg { width: 28px; height: 28px; margin-left: 3px; }

/* Barra inferior institucional */
.video-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  margin-top: 1.8rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(100,70,30,.5);
  position: relative;
  z-index: 2;
}

.video-bottom-dot {
  color: var(--color-gold-main);
  font-size: 1rem;
}

/* Stats bar */
.stats-bar { padding: 1.5rem 0; border-top: 1px solid var(--color-light-300); }
.stats-grid { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: clamp(1.4rem, 3.5vw, 2rem); color: #111; font-weight: 800; line-height: 1.1; }
.stat-item strong sup { font-size: .6em; color: var(--color-gold-main); }
.stat-item span { display: block; font-size: .62rem; color: var(--text-light-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: .25rem; font-weight: 600; }

/* Ação */
.bloco-acao { padding: 2rem 0 3rem; }
.acao-desktop-text { display: none; }
.acao-mobile-text { display: block; font-size: 1.1rem; font-weight: 700; color: var(--color-gold-light); }
.acao-docs-container { margin-top: 2rem; }
.acao-mobile-docs-title { font-size: .9rem; text-transform: uppercase; color: var(--text-dark-muted); letter-spacing: .5px; margin-bottom: 1rem; text-align: center; }
.acao-cards { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.doc-card { background: rgba(255,255,255,.05); border: 1px solid var(--color-gold-dark); padding: 1rem; border-radius: var(--border-radius); text-align: center; font-weight: 600; font-size: .95rem; }

/* ==========================================================================
   BOXES COMPARATIVAS — Ultra-compactas
   ========================================================================== */
.bloco-carrossel { padding: 2.5rem 0; overflow: hidden; }
.carousel-wrapper { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 34px; }
.carousel-track-container { overflow: hidden; }
.carousel-track { display: flex; transition: transform .4s cubic-bezier(.25,1,.5,1); list-style: none; }
.carousel-slide { min-width: 100%; padding: .5rem 0 1rem; }
.cargo-header-novo { text-align: center; font-size: clamp(1rem, 3vw, 1.4rem); font-weight: 900; color: #111; text-transform: uppercase; margin-bottom: 1rem; }

.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; width: min(100%, 960px); margin: 0 auto; }

.comparison-card { border-radius: 20px; padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: 0 14px 40px rgba(0,0,0,.16); overflow: hidden; }

.comparison-card.loss { background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.07), transparent 30%), linear-gradient(145deg, #050505, #151515); border: 1.5px solid rgba(201,154,61,.6); color: #fff; }

.comparison-card.gain { color: #111; border: 1.5px solid #8A6428; background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0) 18%, rgba(255,255,255,.26) 45%, rgba(255,255,255,0) 62%), repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0px, rgba(255,255,255,.10) 1px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 3px), linear-gradient(135deg, #B8860B 0%, #FFD700 18%, #F5C542 38%, #D4AF37 62%, #A97808 100%); box-shadow: 0 14px 40px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.2), inset 0 0 24px rgba(255,255,255,.12); }

.comparison-badge { display: inline-flex; border: 1px solid currentColor; border-radius: 999px; padding: .3rem .7rem; font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .7rem; }
.loss .comparison-badge { color: #D4AF37; }
.gain .comparison-badge { color: #111; }

/* Box preta — frase de impacto */
.loss-impact-text { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.05rem, 3.2vw, 1.45rem); line-height: 1.4; color: #e8e4dc; }
.red-highlight { color: #ff4040; font-weight: 700; }

/* Box dourada — logo + titulo + texto */
.gain-header { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.gain-logo { width: 38px; height: 38px; object-fit: contain; border-radius: 6px; }
.gain-title { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.2rem, 3.2vw, 1.6rem); font-weight: 700; color: #111; line-height: 1.1; }
.gain-text { font-size: clamp(.86rem, 2.4vw, 1rem); line-height: 1.5; color: #1a1a1a; }
.gain-text strong { font-weight: 800; color: #0d4f25; }

/* Disclaimer tooltip */
.gain-disclaimer { margin-top: .8rem; position: relative; }
.disclaimer-trigger { font-size: .65rem; color: rgba(0,0,0,.38); cursor: pointer; text-decoration: underline; text-decoration-style: dotted; }
.disclaimer-trigger:hover { color: rgba(0,0,0,.65); }
.disclaimer-tooltip { display: none; position: absolute; bottom: 100%; left: 0; right: 0; background: #1a1a1a; color: #ddd; font-size: .7rem; line-height: 1.5; padding: .75rem .9rem; border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,.3); margin-bottom: .4rem; z-index: 20; }
.disclaimer-tooltip.visible { display: block; }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--color-dark-100); color: var(--color-gold-main); border: 1px solid var(--color-gold-dark); width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; font-weight: bold; cursor: pointer; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center; }
.prev-btn { left: -5px; }
.next-btn { right: -5px; }

/* Blocos restantes */
.calc-container { background: var(--color-dark-300); border: 1px solid var(--color-gold-dark); border-radius: var(--border-radius-lg); padding: 2rem 1.5rem; }
.calc-box label { display: block; margin-bottom: .5rem; font-weight: 600; color: var(--text-dark-muted); }
.calc-box select { width: 100%; padding: 1rem; background: var(--color-dark-100); border: 1px solid var(--color-gold-dark); color: #fff; border-radius: var(--border-radius); font-size: 1rem; margin-bottom: 1.5rem; font-family: inherit; outline: none; }
.calc-results { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.result-card { background: rgba(255,255,255,.03); padding: 1rem; border-radius: var(--border-radius); border-left: 4px solid var(--color-dark-100); }
.result-card span { display: block; font-size: .9rem; color: var(--text-dark-muted); margin-bottom: .5rem; }
.result-card.destaque { border-left-color: var(--color-gold-main); }
.result-card strong { font-size: 1.5rem; color: var(--text-dark-title); }
.result-card.destaque strong { color: var(--color-gold-main); }

/* ========================================================= */
/* 7. COMO FUNCIONA NOSSA DEFESA                              */
/* ========================================================= */

.defesa-flow-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,154,61,.12), transparent 32%),
    linear-gradient(180deg, #FCFAF6 0%, #F6F1E8 55%, #EFE4D2 100%);
}

/* ---- ANIMATED LIGHT BEAMS ---- */
.defesa-beam {
  position: absolute;
  width: 120%;
  height: 60px;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.12), rgba(255,255,255,.18), rgba(212,175,55,.08), transparent);
}
.defesa-beam-1 {
  top: 18%; left: -20%;
  transform: rotate(-18deg);
  animation: beamSweep1 6s ease-in-out infinite;
}
.defesa-beam-2 {
  top: 55%; left: -20%;
  transform: rotate(-12deg);
  animation: beamSweep2 8s ease-in-out 2s infinite;
}
.defesa-beam-3 {
  top: 78%; left: -20%;
  transform: rotate(-22deg);
  animation: beamSweep3 7s ease-in-out 4s infinite;
}
@keyframes beamSweep1 {
  0%   { opacity: 0; transform: rotate(-18deg) translateX(-60%); }
  30%  { opacity: .14; }
  70%  { opacity: .10; }
  100% { opacity: 0; transform: rotate(-18deg) translateX(60%); }
}
@keyframes beamSweep2 {
  0%   { opacity: 0; transform: rotate(-12deg) translateX(-50%); }
  35%  { opacity: .10; }
  65%  { opacity: .08; }
  100% { opacity: 0; transform: rotate(-12deg) translateX(50%); }
}
@keyframes beamSweep3 {
  0%   { opacity: 0; transform: rotate(-22deg) translateX(-55%); }
  40%  { opacity: .08; }
  100% { opacity: 0; transform: rotate(-22deg) translateX(55%); }
}

.defesa-flow-section .container {
  position: relative;
  z-index: 1;
}

/* Kicker */
.defesa-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.defesa-kicker span:first-child,
.defesa-kicker span:last-child {
  display: block; width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-main));
}
.defesa-kicker span:last-child {
  background: linear-gradient(90deg, var(--color-gold-main), transparent);
}
.defesa-kicker span:nth-child(2) {
  font-size: 11px; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-gold-dark);
}

/* Header */
.defesa-flow-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}
.defesa-flow-header h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1; letter-spacing: -.05em;
  font-weight: 950; color: #121212;
  margin: 0 0 .8rem;
}
.defesa-flow-header p {
  max-width: 680px; margin: 0 auto;
  color: #5a584f;
  font-size: clamp(.9rem, 2vw, 1.1rem);
  line-height: 1.55;
}

/* ---- FLOW GRID ---- */
.defesa-flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

/* ---- CARDS ---- */
.defesa-card {
  position: relative;
  border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
}
.defesa-card-black {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(145deg, #060606, #121215 56%, #080808 100%);
  border: 1px solid rgba(201,154,61,.28);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  animation: defesaFloatA 4s ease-in-out infinite;
}
.defesa-card-gold {
  background:
    linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0) 18%, rgba(255,255,255,.26) 45%, rgba(255,255,255,0) 62%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0px, rgba(255,255,255,.10) 1px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 3px),
    linear-gradient(135deg, #B8860B 0%, #FFD700 18%, #F5C542 38%, #D4AF37 62%, #A97808 100%);
  border: 1px solid rgba(101,69,18,.26);
  color: #1a1205;
  box-shadow:
    0 24px 60px rgba(0,0,0,.15),
    inset 0 0 0 1px rgba(255,255,255,.18),
    inset 0 0 20px rgba(255,255,255,.10);
  animation: defesaFloatB 4s ease-in-out infinite;
}

/* Gentle alternating float: card A goes up then down, card B does opposite */
@keyframes defesaFloatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes defesaFloatB {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

.defesa-label {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .62rem; font-weight: 900;
  letter-spacing: .10em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.defesa-card-black .defesa-label { color: #D4AF37; }
.defesa-card-gold .defesa-label { color: rgba(30,18,4,.55); }

.defesa-card h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.12; letter-spacing: -.03em;
  font-weight: 900; text-transform: uppercase;
  margin: 0 0 .7rem;
}
.defesa-card p {
  font-size: clamp(.85rem, 1.4vw, 1rem);
  line-height: 1.55; margin: 0;
}
.defesa-card-black p { color: #c8c8cc; }
.defesa-card-gold p { color: #2d1e06; }

.defesa-card-icon {
  position: absolute; bottom: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; opacity: .2;
}
.defesa-card-black .defesa-card-icon { color: #D4AF37; }
.defesa-card-gold .defesa-card-icon { color: #1a1205; }

/* ---- CONNECTOR LINE ---- */
.defesa-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 60px;
}
.defesa-connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(201,154,61,.6),
    rgba(201,154,61,.9),
    rgba(201,154,61,.6));
  border-radius: 2px;
  position: relative;
}
/* Animated shimmer on the line */
.defesa-connector-line::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,240,150,.8), transparent);
  border-radius: 4px;
  animation: lineShimmer 2.5s ease-in-out infinite;
}
@keyframes lineShimmer {
  0%   { left: -40px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: calc(100% + 40px); opacity: 0; }
}
/* Dots at each end of the line */
.defesa-connector-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-gold-main);
  box-shadow: 0 0 8px rgba(201,154,61,.4);
  top: 50%; transform: translateY(-50%);
}
.defesa-connector-dot-l { left: -4px; }
.defesa-connector-dot-r { right: -4px; }

/* ---- CTA ---- */
.defesa-flow-cta {
  display: flex; align-items: center; justify-content: center;
  width: min(100%, 520px);
  min-height: 58px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505; font-weight: 950; font-size: 1rem;
  text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow:
    0 18px 38px rgba(201,154,61,.25),
    inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.defesa-flow-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(201,154,61,.3),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.defesa-flow-cta::after {
  content: "";
  position: absolute; top: 0; left: 200%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), rgba(255,240,150,.9), rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}

/* ---- INITIAL STATES (before visible) ---- */
.defesa-flow-section:not(.is-visible) .defesa-flow-header {
  opacity: 0; transform: translateY(20px);
}
.defesa-flow-section:not(.is-visible) .defesa-card-black {
  opacity: 0; transform: translateX(-34px);
}
.defesa-flow-section:not(.is-visible) .defesa-card-gold {
  opacity: 0; transform: translateX(34px);
}
.defesa-flow-section:not(.is-visible) .defesa-connector {
  opacity: 0;
}
.defesa-flow-section:not(.is-visible) .defesa-flow-cta {
  opacity: 0; transform: translateY(16px);
}

/* ---- VISIBLE (entrance reveal) ---- */
.defesa-flow-section.is-visible .defesa-flow-header {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
.defesa-flow-section.is-visible .defesa-card-black {
  opacity: 1;
  transition: opacity .6s ease .15s;
  /* Float animation takes over transform after entrance */
}
.defesa-flow-section.is-visible .defesa-card-gold {
  opacity: 1;
  transition: opacity .6s ease .25s;
}
.defesa-flow-section.is-visible .defesa-connector {
  opacity: 1;
  transition: opacity .8s ease .35s;
}
.defesa-flow-section.is-visible .defesa-flow-cta {
  opacity: 1; transform: none;
  transition: opacity .6s ease .45s, transform .6s ease .45s;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  .defesa-flow-section *,
  .defesa-beam {
    animation: none !important;
    transition: none !important;
  }
  .defesa-flow-section .defesa-flow-header,
  .defesa-flow-section .defesa-card,
  .defesa-flow-section .defesa-connector,
  .defesa-flow-section .defesa-flow-cta {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .defesa-flow-section { padding: 3rem 0 3.5rem; }

  .defesa-beam { filter: blur(22px); }
  .defesa-beam-1 { animation-duration: 8s; }
  .defesa-beam-2 { animation-duration: 10s; }
  .defesa-beam-3 { display: none; }

  .defesa-flow {
    display: flex; flex-direction: column;
    gap: 0; align-items: stretch;
  }

  /* Vertical connector on mobile */
  .defesa-connector {
    min-height: 40px;
    width: 2px;
    margin: 0 auto;
    flex-direction: column;
  }
  .defesa-connector-line {
    width: 2px; height: 100%;
    background: linear-gradient(180deg,
      rgba(201,154,61,.6),
      rgba(201,154,61,.9),
      rgba(201,154,61,.6));
  }
  .defesa-connector-line::after {
    width: 4px; height: 20px; left: -1px; top: -20px;
    background: linear-gradient(180deg, transparent, rgba(255,240,150,.8), transparent);
    animation: lineShimmerV 2.5s ease-in-out infinite;
  }
  @keyframes lineShimmerV {
    0%   { top: -20px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: calc(100% + 20px); opacity: 0; }
  }
  .defesa-connector-dot-l { left: 50%; top: -4px; transform: translateX(-50%); }
  .defesa-connector-dot-r { right: auto; left: 50%; top: auto; bottom: -4px; transform: translateX(-50%); }

  .defesa-card { border-radius: 20px; padding: 1.3rem; }
  .defesa-card h3 { font-size: 1.1rem; }
  .defesa-flow-header h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .defesa-flow-cta { width: 100%; margin-top: 2rem; }

  /* Smaller float on mobile */
  @keyframes defesaFloatA {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  @keyframes defesaFloatB {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }

  /* Initial states — vertical */
  .defesa-flow-section:not(.is-visible) .defesa-card-black {
    opacity: 0; transform: translateY(24px);
  }
  .defesa-flow-section:not(.is-visible) .defesa-card-gold {
    opacity: 0; transform: translateY(24px);
  }
}
/* ========================================================= */
/* 8. MICRO-QUIZ URGÊNCIA FINAL                               */
/* ========================================================= */

.urgency-quiz-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,154,61,.10), transparent 30%),
    linear-gradient(180deg, #050505 0%, #08080D 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.urgency-quiz-card {
  width: min(100%, 760px);
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.045), transparent 38%),
    linear-gradient(180deg, #111118 0%, #0B0B10 100%);
  border: 1px solid rgba(201,154,61,.38);
  border-radius: 24px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  text-align: center;
}

.quiz-step h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 1.4rem;
  color: #fff;
  font-weight: 700;
}

.quiz-select,
.quiz-input {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(201,154,61,.55);
  background: #050505;
  color: #fff;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.quiz-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.quiz-select:focus,
.quiz-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(201,154,61,.12);
}

.quiz-gold-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505;
  border: 0;
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 38px rgba(201,154,61,.25),
    inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.quiz-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(201,154,61,.3),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.quiz-gold-btn::after {
  content: "";
  position: absolute;
  top: 0; left: 200%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), rgba(255,240,150,.9), rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}

.quiz-error {
  margin-top: .8rem;
  color: #FF5555;
  font-size: .9rem;
  font-weight: 700;
}

.quiz-error[hidden] { display: none; }

.quiz-result-text {
  margin: 0;
  font-family: Rockwell, "Rockwell Nova", "Roboto Slab", Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -.025em;
  font-weight: 400;
  color: #fff;
}

.quiz-result-name {
  color: #fff;
  font-weight: 600;
}

.quiz-result-cargo {
  color: #D4AF37;
}

.quiz-result-money {
  color: #FF4040;
  font-weight: 700;
  white-space: nowrap;
}

.quiz-result-highlight {
  color: #D4AF37;
}

.quiz-restart {
  margin-top: 1.4rem;
  background: transparent;
  border: 0;
  color: #A0AEC0;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: .9rem;
  font-family: inherit;
  transition: color .2s ease;
}

.quiz-restart:hover {
  color: #D4AF37;
}

/* Quiz step transitions */
.quiz-step-name,
.quiz-step-result {
  animation: quizFadeIn .4s ease;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .urgency-quiz-section {
    padding: 3rem 0 3.5rem;
  }

  .urgency-quiz-card {
    border-radius: 20px;
    padding: 1.2rem;
  }

  .quiz-step h2 {
    font-size: 2rem;
  }

  .quiz-result-text {
    font-size: 1.2rem;
    line-height: 1.32;
  }
}
.main-footer { background: var(--color-dark-100); padding: 2rem 0; border-top: 1px solid var(--color-dark-300); color: var(--text-dark-muted); font-size: .8rem; }
.footer-dados { margin-top: 1rem; font-size: .75rem; line-height: 1.8; }

/* Desktop */
@media (min-width: 769px) {
  section { padding: 4rem 0; }
  .section-title { font-size: 2.2rem; margin-bottom: 1.5rem; }
  .btn-primary, .btn-secondary { width: auto; }
  .divider-dark-to-light, .divider-light-to-dark { height: 50px; }

  .bloco-hero { min-height: 80vh; padding-top: 120px; }
  .headline { font-size: 3.5rem; }
  .hero-actions { flex-direction: row; }
  .hero-text .subheadline { font-size: 1.2rem; }

  .bloco-video { padding: 3rem 0; }
  .video-container { max-width: 760px; }

  .stats-grid { gap: 5rem; }

  .acao-desktop-text { display: block; }
  .acao-mobile-text { display: none; }
  .acao-mobile-docs-title { display: none; }
  .acao-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .acao-cards { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .comparison-grid { grid-template-columns: .85fr 1.15fr; gap: 1.5rem; align-items: stretch; }
  .comparison-card { display: flex; flex-direction: column; justify-content: center; }
  .gain-logo { width: 44px; height: 44px; }
  .loss-impact-text { font-size: 1.4rem; }
  .gain-title { font-size: 1.65rem; }
  .gain-text { font-size: 1.02rem; }

  .carousel-btn { width: 50px; height: 50px; font-size: 1.5rem; }
  .prev-btn { left: -25px; }
  .next-btn { right: -25px; }

  .calc-container { padding: 3rem; }
  .calc-results { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .result-card strong { font-size: 1.8rem; }
}

/* ==========================================================================
   JULGADOS — Seção premium editorial
   ========================================================================== */
.julgados-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(201,154,61,.08), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(201,154,61,.10), transparent 26%),
    linear-gradient(180deg, #fbf8f3 0%, #f2ecdf 100%);
}

.section-head { text-align: center; margin-bottom: clamp(20px, 4vw, 42px); }

.section-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .14em; color: var(--color-gold-dark); margin-bottom: 12px;
}
.section-kicker::before, .section-kicker::after { content: ""; width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--color-gold-main)); }
.section-kicker::after { background: linear-gradient(90deg, var(--color-gold-main), transparent); }

.section-head h2 { margin: 0 auto 10px; max-width: 820px; font-size: clamp(28px, 5vw, 52px); line-height: .98; letter-spacing: -.055em; font-weight: 950; color: #121212; }
.section-head p { margin: 0 auto; max-width: 720px; color: #64625e; font-size: clamp(14px, 2vw, 17px); line-height: 1.55; }

.judgments-shell { position: relative; padding-inline: 64px; }
.judgments-viewport { overflow: hidden; border-radius: 34px; }
.judgments-track { display: flex; transition: transform 420ms cubic-bezier(.2,.8,.2,1); will-change: transform; }
.judgment-slide { min-width: 100%; padding: 10px 0 22px; }

.judgment-stage { position: relative; width: min(1100px, 100%); height: 640px; margin: 0 auto; }

.case-panel, .decision-panel { position: absolute; border-radius: 30px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.18); }

.case-panel {
  inset: 0 auto auto 0; width: 44%; height: 600px;
  background: radial-gradient(circle at 20% 8%, rgba(255,255,255,.06), transparent 30%), linear-gradient(145deg, #050505 0%, #0f0f10 56%, #070707 100%);
  border: 1px solid rgba(201,154,61,.20); color: #fff; padding: 34px; z-index: 1;
}
.case-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 24%), linear-gradient(90deg, rgba(201,154,61,.11), transparent 11%, transparent 89%, rgba(201,154,61,.08));
}

.case-inner, .decision-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }

.brand-mark, .mobile-mark { display: grid; place-items: center; overflow: hidden; background: transparent; border: none; box-shadow: none; }
.brand-mark { width: 64px; height: 64px; border-radius: 12px; margin-bottom: 28px; }
.mobile-mark { width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto; }
.brand-mark img, .mobile-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark.logo-failed, .mobile-mark.logo-failed { background: linear-gradient(135deg, #241a0f, #0d0d0d 46%, #d2a24d 52%, #1a1a1a 60%, #65451a); border: 1px solid rgba(201,154,61,.24); }
.brand-mark.logo-failed::before, .mobile-mark.logo-failed::before { content: "V"; color: #f2c75b; font-family: Georgia, serif; font-size: 28px; font-weight: 900; }
.mobile-mark.logo-failed::before { font-size: 22px; }

.meta-block { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(201,154,61,.15); }
.meta-label { display: block; margin-bottom: 8px; font-family: Georgia, serif; font-style: italic; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-gold-light); font-weight: 700; }
.process-number { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.06; letter-spacing: -.04em; font-weight: 900; color: #fff; word-break: break-word; }
.meta-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.meta-icon { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; color: var(--color-gold-light); border: 1px solid rgba(201,154,61,.35); background: rgba(201,154,61,.05); flex: 0 0 auto; }
.meta-value { display: block; font-size: clamp(16px, 1.35vw, 22px); line-height: 1.35; font-weight: 800; color: #fff; }
.case-note { margin-top: auto; color: rgba(255,255,255,.48); font-size: 15px; line-height: 1.55; max-width: 360px; }

.decision-panel {
  inset: 44px 0 auto auto; width: 59%; min-height: 560px;
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0) 18%, rgba(255,255,255,.26) 45%, rgba(255,255,255,0) 62%), repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0px, rgba(255,255,255,.10) 1px, rgba(0,0,0,.045) 2px, rgba(0,0,0,.045) 3px), linear-gradient(135deg, #b8860b 0%, #f4cf71 14%, #d4af37 40%, #c59430 68%, #ebc663 100%);
  border: 1px solid rgba(101,69,18,.26); color: #221505; padding: 36px 40px 30px; z-index: 2;
}
.decision-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 18%, rgba(255,255,255,.20), transparent 20%), radial-gradient(circle at 72% 80%, rgba(255,255,255,.10), transparent 28%), linear-gradient(180deg, rgba(255,255,255,.12), transparent 28%, rgba(0,0,0,.06));
}

.quote-mark { font-family: Georgia, serif; font-size: 42px; line-height: .8; color: rgba(72,47,10,.24); margin-bottom: 12px; }
.decision-text { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(24px, 2.5vw, 44px); line-height: 1.18; letter-spacing: -.035em; font-style: italic; font-weight: 700; color: #3b2707; }
.authority-line { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(65,42,7,.64); }
.authority-line::before { content: ""; width: 50px; height: 1px; background: rgba(65,42,7,.32); }

.award-box { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 18px; border-radius: 18px; border: 1px solid rgba(65,42,7,.15); background: rgba(255,255,255,.12); margin-bottom: 16px; }
.award-icon { width: 50px; height: 50px; border-radius: 999px; display: grid; place-items: center; background: #120d04; color: var(--color-gold-brilliant); font-size: 20px; }
.award-label { display: block; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(65,42,7,.54); margin-bottom: 4px; }
.award-value { display: block; font-size: clamp(30px, 2.8vw, 48px); line-height: 1; letter-spacing: -.06em; font-weight: 1000; color: #120c04; }
.award-date { display: block; margin-top: 4px; font-size: 12px; color: rgba(65,42,7,.50); }

.action-row { display: flex; gap: 12px; margin-top: auto; }
.julgados-section .btn { appearance: none; border: none; text-decoration: none; cursor: pointer; min-height: 54px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; font-weight: 900; font-size: 15px; transition: .2s ease; }
.julgados-section .btn-primary { flex: 1; background: rgba(255,255,255,.14); border: 1px solid rgba(65,42,7,.18); color: #221505; }
.julgados-section .btn-primary:hover { transform: translateY(-1px); background: rgba(255,255,255,.22); }
.julgados-section .btn-secondary { background: transparent; border: 1px solid rgba(65,42,7,.20); color: #3b2707; padding-inline: 16px; width: auto; }

.mobile-judgment-card { display: none; }

.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 52px; height: 52px; border-radius: 999px; border: 1px solid rgba(201,154,61,.35); background: #0b0b0b; color: var(--color-gold-light); display: grid; place-items: center; cursor: pointer; box-shadow: 0 18px 44px rgba(0,0,0,.12); transition: .18s ease; }
.carousel-arrow:hover { background: var(--color-gold-main); color: #0b0b0b; transform: translateY(-50%) scale(1.03); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow svg { width: 22px; height: 22px; }

.carousel-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 8px; }
.carousel-dot { width: 8px; height: 8px; border: none; border-radius: 999px; background: rgba(122,87,25,.28); cursor: pointer; transition: .2s ease; }
.carousel-dot.active { width: 28px; background: var(--color-gold-main); }

/* ========================================================= */
/* 6. CALCULADORA GRAM — Chips + Modal Premium               */
/* ========================================================= */

.gram-calc-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,154,61,.12), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(201,154,61,.10), transparent 34%),
    linear-gradient(180deg, #050505 0%, #08080D 100%);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gram-calc-shell {
  width: min(100%, 940px);
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.04), transparent 38%),
    linear-gradient(180deg, #111118 0%, #0B0B10 100%);
  border: 1px solid rgba(201,154,61,.36);
  border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  text-align: center;
}

.gram-calc-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 950;
  letter-spacing: .06em;
  color: #D4AF37;
  margin: 0 0 .6rem;
}

.gram-calc-subtitle {
  color: #A0AEC0;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 1.8rem;
}

.gram-calc-question {
  color: #D6D9E0;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Chips */
.gram-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.gram-chip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,154,61,.32);
  color: #D6D9E0;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
  font-family: inherit;
}

.gram-chip:hover {
  border-color: #D4AF37;
  color: #fff;
  background: rgba(201,154,61,.10);
}

.gram-chip.active {
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505;
  border-color: transparent;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(201,154,61,.3);
}

/* Input */
.gram-input {
  display: block;
  width: min(100%, 480px);
  margin: 0 auto 1.2rem;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(201,154,61,.35);
  background: #050505;
  color: #fff;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  text-align: center;
}

.gram-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(201,154,61,.15);
}

/* Botão principal */
.gram-gold-btn {
  display: block;
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 58px;
  border-radius: 14px;
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505;
  font-size: 1rem;
  font-weight: 950;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  box-shadow:
    0 18px 38px rgba(201,154,61,.25),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.gram-gold-btn::after {
  content: "";
  position: absolute;
  top: 0; left: 200%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), rgba(255,240,150,.9), rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}

/* Loading inline — hidden by default, shown via JS removing hidden attr */
.gram-loading {
  min-height: 200px;
  place-items: center;
  text-align: center;
  margin-top: 1.5rem;
}

.gram-loading[hidden] { display: none !important; }
.gram-loading:not([hidden]) { display: grid; }

.gram-spinner {
  width: 64px; height: 64px;
  border-radius: 999px;
  border: 3px solid rgba(201,154,61,.18);
  border-top-color: #D4AF37;
  animation: gramSpin .85s linear infinite;
  margin: 0 auto 1.2rem;
}

@keyframes gramSpin { to { transform: rotate(360deg); } }

.gram-loading p {
  color: #D4AF37;
  font-weight: 900;
  font-size: 1rem;
}

/* ========================================== */
/* MODAL DE RESULTADO — Dashboard Premium     */
/* ========================================== */

.gram-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.80);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: .8rem;
  overflow-y: auto;
}

.gram-modal-overlay[hidden] { display: none !important; }

.gram-modal {
  width: min(100%, 660px);
  max-height: 96vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0A0A16 0%, #070710 100%);
  border: 1px solid rgba(201,154,61,.22);
  border-radius: 22px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  color: #fff;
  animation: modalIn .35s cubic-bezier(.2,.8,.2,1);
}

/* Scrollbar elegante */
.gram-modal::-webkit-scrollbar { width: 4px; }
.gram-modal::-webkit-scrollbar-track { background: transparent; }
.gram-modal::-webkit-scrollbar-thumb { background: rgba(201,154,61,.25); border-radius: 4px; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- HEADER --- */
.gram-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.gram-modal-badge {
  color: #D4AF37;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gram-header-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.gram-header-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  color: #6B7280;
  padding: .35rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
}

.gram-header-btn svg { flex-shrink: 0; }
.gram-header-btn:hover { background: rgba(255,255,255,.06); color: #A0AEC0; border-color: rgba(255,255,255,.18); }

.gram-header-close {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(220,38,38,.35);
  background: transparent;
  color: #ef4444;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
  margin-left: .3rem;
}

.gram-header-close:hover { background: rgba(220,38,38,.12); border-color: rgba(220,38,38,.5); }

/* --- SAUDAÇÃO --- */
.gram-greeting {
  margin-bottom: .6rem;
}

.gram-greeting h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin: 0 0 .2rem;
}

.gram-greeting h3 span {
  color: #D4AF37;
}

.gram-greeting p {
  color: #F6F1E8;
  font-size: .88rem;
  margin: 0;
  line-height: 1.4;
}

/* --- VALOR HERO ROCKWELL --- */
.gram-hero-value-block {
  margin-bottom: 1.4rem;
}

.gram-hero-value {
  font-family: Rockwell, "Rockwell Nova", "Roboto Slab", Georgia, serif;
  color: #D4AF37;
  font-size: clamp(2.6rem, 10vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  margin-bottom: .3rem;
  text-shadow: 0 2px 24px rgba(201,154,61,.18);
}

.gram-hero-period {
  display: block;
  color: #EFE4D2;
  font-size: .78rem;
  font-weight: 600;
}

/* --- GRÁFICO EM LINHA --- */
.gram-line-chart-block {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.2rem;
}

.gram-chart-header h3 {
  margin: 0 0 .15rem;
  color: #FFF;
  font-size: .85rem;
  font-weight: 800;
}

.gram-chart-header p {
  margin: 0 0 .8rem;
  color: #EFE4D2;
  font-size: .72rem;
  font-weight: 600;
}

.gram-line-chart-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.5 / 1;
}

.gram-line-chart-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

/* Tooltip */
.gram-chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(12,12,24,.92);
  border: 1px solid rgba(201,154,61,.4);
  border-radius: 10px;
  padding: .4rem .65rem;
  transform: translate(-50%, -110%);
  white-space: nowrap;
  z-index: 10;
}

.gram-chart-tooltip[hidden] { display: none; }

.gram-tt-period {
  display: block;
  color: #EFE4D2;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gram-tt-value {
  display: block;
  color: #D4AF37;
  font-size: .88rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* --- COMPOSIÇÃO --- */
.gram-comp-block {
  margin-bottom: 1rem;
}

.gram-comp-block h3 {
  margin: 0 0 .7rem;
  color: #FFF;
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.gram-comp-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.gram-comp-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: .75rem .7rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.gram-comp-item span {
  display: block;
  color: #EFE4D2;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}

.gram-comp-item strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.gram-comp-item.highlight {
  border-color: rgba(201,154,61,.22);
  background: rgba(201,154,61,.05);
}

.gram-comp-item.highlight strong { color: #D4AF37; }

#mMensal { color: #E53E3E !important; }

/* --- AÇÕES --- */
.gram-modal-actions {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: .6rem;
}

.gram-action-wa {
  min-height: 52px;
  border-radius: 14px;
  background: #25D366;
  color: #041008;
  font-weight: 950;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37,211,102,.22);
  transition: .2s ease;
}

.gram-action-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.3); }

.gram-action-redo {
  min-height: 36px;
  background: transparent;
  border: none;
  color: #EFE4D2;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
  text-align: center;
}

.gram-action-redo:hover { color: #D4AF37; }

.gram-modal-disclaimer {
  color: #EFE4D2;
  font-size: .65rem;
  line-height: 1.4;
  text-align: center;
  margin-top: .2rem;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .gram-calc-shell {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .gram-chips { gap: .45rem; }
  .gram-chip { font-size: .8rem; padding: .48rem .85rem; }

  .gram-modal {
    max-height: 96vh;
    border-radius: 20px;
    padding: 1rem;
  }

  .gram-header-btn span { display: none; }
  .gram-header-btn { padding: .35rem; }

  .gram-hero-value {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .gram-line-chart-wrap {
    aspect-ratio: 2 / 1;
  }
}

/* ========================================================= */
/* 4. DOCUMENTOS / QUERO ENTRAR COM O PROCESSO (Novo Layout) */
/* ========================================================= */


.bloco-documentos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.10), transparent 32%),
    linear-gradient(180deg, #050505 0%, #08080D 100%);
  color: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.bloco-documentos::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.18), transparent 9%, transparent 90%, rgba(212, 175, 55, 0.16));
  opacity: 0.55;
}

.bloco-documentos .container {
  position: relative;
  z-index: 1;
}

.docs-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.docs-logo {
  width: min(280px, 70vw);
  height: auto;
  object-fit: contain;
  display: block;
}

.docs-copy {
  max-width: 980px;
}

.docs-copy h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 0 0 1.3rem;
  color: #fff;
}

.docs-copy h2 .gold-text {
  color: #D4AF37;
}

.docs-copy h2 .light-text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.85em;
}

.docs-copy h2 .jaguar-sport {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: normal;
  /* Diagonal gradient cut matching the Jaguar Sport image */
  background: linear-gradient(172deg, #ffffff 58%, #fff0a8 58.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 3px 1px rgba(0, 0, 0, 0.6));
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.2em;
}

.docs-subtitle {
  color: #E5E7EB;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  max-width: 820px;
  margin: 0 0 2rem;
}

.docs-subtitle-mobile {
  display: none;
}

.docs-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 2.2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #F0C75E 0%, #C99A3D 100%);
  color: #050505;
  font-weight: 950;
  font-size: 1rem;
  text-decoration: none;
  box-shadow:
    0 18px 38px rgba(201,154,61,.25),
    inset 0 1px 0 rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}

.docs-primary-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 240, 150, 0.9),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}

@keyframes shine-sweep-gold {
  0% { left: 200%; }
  100% { left: -150%; }
}

.docs-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: clamp(3rem, 6vw, 4.5rem) 0 1.8rem;
}

.docs-title-row span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}

.docs-title-row span:last-child {
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.docs-title-row h3 {
  color: #D4AF37;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.15;
  text-align: center;
  margin: 0;
  font-weight: 900;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.doc-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 36%),
    linear-gradient(180deg, #111 0%, #070707 100%);
  border: 1px solid rgba(212,175,55,.62);
  border-radius: 18px;
  padding: 1.1rem;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.doc-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.doc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doc-card strong {
  display: block;
  color: #fff;
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  line-height: 1.25;
  font-weight: 850;
}

.docs-secondary-cta {
  width: min(100%, 430px);
  min-height: 54px;
  margin: 1.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: .2s ease;
  position: relative;
  overflow: hidden;
}

.docs-secondary-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 240, 150, 0.9),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine-sweep-gold 3s ease-in-out infinite alternate;
}

.docs-secondary-cta:hover {
  background: rgba(212,175,55,.08);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .bloco-documentos {
    padding: 3rem 0 3.5rem;
  }

  .docs-logo-wrap {
    margin-bottom: 1.3rem;
  }

  .docs-logo {
    width: min(220px, 72vw);
  }

  .docs-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
    line-height: 1.04;
  }

  .docs-subtitle-desktop {
    display: none;
  }

  .docs-subtitle-mobile {
    display: block;
    color: #D4AF37;
    font-size: 1.25rem;
    font-weight: 850;
    margin-bottom: 1.6rem;
  }

  .docs-primary-cta {
    width: 100%;
    min-height: 58px;
    padding: 0 1rem;
    font-size: .95rem;
  }

  .docs-title-row {
    grid-template-columns: 1fr;
    gap: .8rem;
    margin: 2.4rem 0 1.2rem;
  }

  .docs-title-row span {
    display: none;
  }

  .docs-title-row h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }

  .doc-card {
    padding: .5rem;
    border-radius: 12px;
  }

  .doc-image-wrap {
    aspect-ratio: 5 / 3;
    margin-bottom: .4rem;
    border-radius: 7px;
  }

  .doc-card strong {
    font-size: .72rem;
  }

  .docs-secondary-cta {
    width: 100%;
    margin-top: 1.2rem;
    min-height: 52px;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .judgments-shell { padding-inline: 56px; }
  .judgment-stage { height: 560px; }
  .case-panel { width: 46%; height: 520px; padding: 30px 28px 24px; }
  .decision-panel { width: 60%; min-height: 470px; padding: 30px 30px 24px; }
  .decision-text { font-size: 32px; }
}

@media (max-width: 768px) {
  /* Vídeo mobile */
  .bloco-video {
    padding: 2.4rem 0 3rem;
    background:
      radial-gradient(circle at 50% 58%, rgba(201,154,61,.13), transparent 38%),
      linear-gradient(180deg, var(--champagne-white) 0%, var(--champagne-light) 100%);
  }
  .bloco-video::before { opacity: .12; background-size: 34px 34px, 34px 34px, auto; }
  .video-police-watermark { width: 230px; height: 230px; opacity: .12; }
  .video-container {
    margin-top: 1.4rem;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0,0,0,.18), 0 0 0 5px rgba(201,154,61,.06);
  }
  .video-icon-top svg { width: 28px; height: 28px; }
  .video-features { gap: .4rem; margin-bottom: 1.2rem; }
  .video-feature { font-size: .65rem; }
  .video-feature-divider { font-size: .7rem; }
  .video-bottom-bar { margin-top: 1.3rem; font-size: .58rem; gap: .5rem; letter-spacing: .14em; }

  /* Julgados mobile */
  .julgados-section { padding: 36px 0 46px; }
  .section-kicker { font-size: 10px; gap: 8px; margin-bottom: 8px; }
  .section-kicker::before, .section-kicker::after { width: 26px; }
  .section-head { margin-bottom: 18px; }
  .section-head h2 { font-size: 26px; line-height: 1.02; max-width: 330px; }
  .section-head p { font-size: 13px; line-height: 1.5; max-width: 330px; }
  .judgments-shell { padding-inline: 0; }
  .judgments-viewport { border-radius: 24px; }
  .judgment-slide { padding: 0 0 10px; }
  .judgment-stage { display: none; }

  .mobile-judgment-card {
    display: block; width: 100%; border-radius: 22px; overflow: hidden;
    background: linear-gradient(180deg, #fffdf8, #f5efe1); box-shadow: 0 18px 44px rgba(0,0,0,.10); border: 1px solid rgba(201,154,61,.18);
  }
  .mobile-top { position: relative; background: radial-gradient(circle at 16% 10%, rgba(255,255,255,.06), transparent 28%), linear-gradient(145deg, #050505, #101010 56%, #070707); color: #fff; padding: 16px 16px 14px; }
  .mobile-top-head { display: flex; gap: 12px; align-items: flex-start; }
  .mobile-process-label { font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(201,154,61,.88); margin-bottom: 4px; }
  .mobile-process-value { font-size: 18px; line-height: 1.1; letter-spacing: -.04em; font-weight: 900; }
  .mobile-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
  .mobile-meta { background: rgba(255,255,255,.05); border: 1px solid rgba(201,154,61,.14); border-radius: 14px; padding: 10px; }
  .mobile-meta small { display: block; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(201,154,61,.84); margin-bottom: 4px; font-weight: 900; }
  .mobile-meta strong { display: block; font-size: 12px; line-height: 1.35; color: #fff; font-weight: 800; }

  .mobile-bottom {
    position: relative; margin: -10px 10px 10px; border-radius: 18px; padding: 16px 14px 14px; color: #221505;
    background: linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,0) 18%, rgba(255,255,255,.22) 42%, rgba(255,255,255,0) 65%), repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0px, rgba(255,255,255,.09) 1px, rgba(0,0,0,.04) 2px, rgba(0,0,0,.04) 3px), linear-gradient(135deg, #b8860b, #f4cf71 18%, #d4af37 48%, #c59430 70%, #eac361);
    box-shadow: 0 16px 28px rgba(0,0,0,.12); border: 1px solid rgba(101,69,18,.22);
  }
  .mobile-quote { font-family: Georgia, serif; font-size: 26px; line-height: .8; color: rgba(72,47,10,.24); margin-bottom: 6px; }
  .mobile-decision-text { font-family: Georgia, serif; font-style: italic; font-weight: 700; font-size: 20px; line-height: 1.18; letter-spacing: -.03em; color: #3b2707; margin-bottom: 12px; }
  .mobile-authority { font-size: 9px; line-height: 1.35; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: rgba(65,42,7,.66); margin-bottom: 12px; }
  .mobile-value-box { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; background: rgba(255,255,255,.14); border: 1px solid rgba(65,42,7,.14); border-radius: 14px; padding: 12px; margin-bottom: 12px; }
  .mobile-value-box small { display: block; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: rgba(65,42,7,.54); margin-bottom: 4px; }
  .mobile-value-box strong { display: block; font-size: 24px; line-height: .95; letter-spacing: -.05em; font-weight: 1000; color: #110b03; }
  .mobile-value-box span { font-size: 10px; color: rgba(65,42,7,.52); text-align: right; }
  .mobile-cta { min-height: 46px; width: 100%; border-radius: 14px; background: rgba(255,255,255,.18); border: 1px solid rgba(65,42,7,.18); color: #221505; font-size: 14px; font-weight: 900; text-decoration: none; display: flex; align-items: center; justify-content: center; }

  .carousel-arrow { top: auto; bottom: 0; transform: none; width: 44px; height: 44px; }
  .carousel-arrow:hover { transform: scale(1.03); }
  .carousel-arrow.prev { left: calc(50% - 56px); }
  .carousel-arrow.next { right: calc(50% - 56px); }
  
  .carousel-arrow.next.attention { 
    background: #25D366; 
    color: #fff; 
    border-color: #25D366; 
    animation: swipe-hint-bottom 1.8s infinite ease-in-out; 
  }

  @keyframes swipe-hint-bottom {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
  }
  .carousel-dots { margin-top: 16px; }
}

/* ==========================================================================
   SHIMMER GOLD — sweeping shine on calculator title
   ========================================================================== */
.shimmer-gold {
  position: relative;
  overflow: hidden;
}
.shimmer-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,235,140,.35) 45%,
    rgba(255,255,255,.5) 50%,
    rgba(255,235,140,.35) 55%,
    transparent 80%
  );
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0%   { left: -100%; }
  40%  { left: 110%; }
  100% { left: 110%; }
}

/* ==========================================================================
   DOCS — secondary heading line + mobile font
   ========================================================================== */
.docs-h2-sub {
  display: block;
  font-size: .75em;
  font-weight: 600;
  opacity: .85;
  margin-top: .15em;
}
@media (max-width: 768px) {
  .bloco-documentos h2 { font-size: clamp(1.5rem, 8vw, 1.9rem); line-height: 1.15; }
  .docs-h2-sub { font-size: .8em; }
}

/* ==========================================================================
   MODAL — secondary action buttons below CTA
   ========================================================================== */
.gram-modal-secondary-row {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-top: .5rem;
}
.gram-action-secondary {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(201,154,61,.3);
  background: rgba(201,154,61,.06);
  color: var(--color-gold-main);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.gram-action-secondary:hover {
  background: rgba(201,154,61,.14);
  border-color: rgba(201,154,61,.5);
}
.gram-action-secondary svg {
  flex-shrink: 0;
}

/* ==========================================================================
   QUIZ — result tagline + calc CTA
   ========================================================================== */
.quiz-result-tagline {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-main);
  line-height: 1.4;
  text-align: center;
}
.quiz-calc-cta {
  margin-top: 1rem !important;
  width: 100%;
}

/* ==========================================================================
   FOOTER — Premium institutional
   ========================================================================== */
.main-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-top: 1px solid rgba(201,154,61,.15);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  line-height: 1.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(201,154,61,.25) 20%, rgba(201,154,61,.25) 80%, transparent);
}

/* Brand column */
.footer-logo strong {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gold-main);
  font-weight: 900;
  letter-spacing: -.02em;
}
.footer-logo strong em {
  font-style: italic;
  color: var(--color-gold-light);
}
.footer-logo span {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}
.footer-mission {
  margin-top: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  max-width: 280px;
}
.footer-values {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.footer-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.footer-value svg {
  color: var(--color-gold-main);
  opacity: .7;
}
.footer-value span {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  line-height: 1.3;
}

/* Data column */
.footer-data h4 {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .6rem;
}
.footer-cnpj {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,154,61,.12);
}
.footer-lawyers p,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-lawyers p svg,
.footer-contact p svg {
  flex-shrink: 0;
  color: var(--color-gold-main);
  opacity: .6;
  margin-top: 2px;
}
.footer-lawyers p strong {
  color: var(--color-gold-main);
  font-weight: 700;
}
.footer-lawyers {
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(201,154,61,.1);
}

/* Copyright */
.footer-copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,154,61,.1);
  text-align: center;
}
.footer-copyright p {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}

/* Mobile compact — hidden on desktop */
.footer-mobile-compact {
  display: none;
}

@media (max-width: 768px) {
  .footer-grid { display: none; }
  .footer-mobile-compact {
    display: block;
    text-align: center;
    padding: .5rem 0;
  }
  .footer-mobile-compact strong {
    display: block;
    font-size: 1rem;
    color: var(--color-gold-main);
    margin-bottom: .4rem;
  }
  .footer-mobile-compact p {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    margin-bottom: .2rem;
  }
}

/* ==========================================================================
   INFO TOOLTIP
   ========================================================================== */
.info-icon-tooltip {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  z-index: 10;
  transition: .2s ease;
}

.info-icon-tooltip:hover {
  border-color: rgba(201, 154, 61, 0.6);
  color: rgba(201, 154, 61, 0.9);
}

.info-icon-tooltip::after {
  content: attr(aria-label);
  position: absolute;
  bottom: 120%;
  right: 0;
  width: 240px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(201, 154, 61, 0.3);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  pointer-events: none;
  text-align: right;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 100;
}

.info-icon-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: 135%;
}

@media (max-width: 768px) {
  .mobile-info-icon {
    top: 14px;
    right: 14px;
  }
}

/* Floating Info button */
.floating-info-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.floating-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D9AE43, #BE8D1F);
  color: #0b1220;
  border: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.floating-info-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(217,174,67,.4); }
.floating-info-btn.active { background: #0b1220; color: #f3d36b; box-shadow: 0 6px 18px rgba(0,0,0,.5); }
.floating-info-label { white-space: nowrap; }
.floating-info-msg {
  width: min(360px, calc(100vw - 40px));
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: max-height .35s ease, opacity .25s ease, padding .25s ease, transform .25s ease;
  background: #0b1220;
  color: #e8edf3;
  font-size: 13.5px;
  line-height: 1.55;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  order: -1;
}
.floating-info-msg.open {
  max-height: 360px;
  opacity: 1;
  padding: 14px 16px;
  pointer-events: auto;
  transform: translateY(0);
  border-color: rgba(217,174,67,.35);
}
@media (max-width: 640px) {
  .floating-info-wrap { left: 14px; bottom: 14px; }
  .floating-info-btn { font-size: 12px; padding: 10px 14px; }
  .floating-info-label { display: none; }
}
