﻿:root {
  --bg: #ffffff;
  --ink: #0f1c2e;
  --muted: #5a6a7a;
  --line: #e6edf1;
  --accent: #0f8a8d;
  --accent-dark: #0b6e70;
  --accent-soft: #e6f6f6;
  --accent-warm: #f4efe8;
  --shadow: 0 18px 45px rgba(15, 28, 46, 0.12);
  --radius: 22px;
  --max-w: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

body.quiz-busy .site-footer {
  margin-top: 0;
}

body.quiz-busy main#conteudo {
  padding-bottom: 70vh;
}

body.quiz-busy .quiz-shell {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

body.quiz-busy .quiz-card {
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 138, 141, 0.08), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(244, 239, 232, 0.7), transparent 35%),
    linear-gradient(120deg, rgba(15, 138, 141, 0.04), rgba(255, 255, 255, 0));
}

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

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

a:hover {
  color: var(--accent-dark);
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 138, 141, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(var(--max-w), 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  padding: 24px 0 10px;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-title {
  font-weight: 600;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.header-actions,
.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  font-weight: 600;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 32px 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.subhead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6f8fa;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: #f8fcfc;
  color: var(--muted);
}

.quiz-shell {
  padding: 32px 0 24px;
}

.mini-nav {
  display: flex;
  justify-content: flex-end;
  padding: 16px 0 0;
}

.mini-menu {
  position: relative;
}

.mini-trigger {
  list-style: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(15, 28, 46, 0.08);
}

.mini-trigger::-webkit-details-marker {
  display: none;
}

.hamburger {
  width: 14px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: inline-block;
  border-radius: 999px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hamburger::before {
  top: -5px;
}

.hamburger::after {
  top: 5px;
}

.mini-links {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 8px;
  min-width: 160px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.mini-links a {
  font-weight: 600;
  color: var(--ink);
}

.mini-menu:not([open]) .mini-links {
  display: none;
}

.quiz-intro {
  margin-bottom: 20px;
}

.quiz-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 10px 0 12px;
  line-height: 1.25;
}

.is-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.headline-highlight {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  box-shadow: 0 12px 20px rgba(15, 138, 141, 0.2);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.quiz-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.progress-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #f0f3f6;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.question-title {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 22px rgba(15, 28, 46, 0.08);
}

.option-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(15, 138, 141, 0.12);
}

.option-btn:active {
  transform: translateY(1px);
}

.option-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(15, 138, 141, 0.35);
  background: #ffffff;
  position: relative;
  flex: 0 0 auto;
}

.option-btn:hover .option-check {
  border-color: var(--accent);
}

.option-text {
  flex: 1;
}

.quiz-footer {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.quiz-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.loader {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid #e7edf1;
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

.analysis-bar {
  height: 8px;
  border-radius: 999px;
  background: #eef2f5;
  overflow: hidden;
  margin-top: 10px;
}

.analysis-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.analysis-percent {
  margin-top: 8px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.info-section {
  padding: 24px 0 8px;
}

.compact-section {
  padding: 18px 0;
}

.compact-section h2 {
  margin: 0 0 8px;
}

.reveal-more {
  margin-top: 10px;
}

.reveal-trigger {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.reveal-trigger::-webkit-details-marker {
  display: none;
}

.reveal-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.reveal-more[open] .reveal-trigger::after {
  transform: rotate(-135deg);
}

.reveal-content {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fbfcfd;
  border: 1px solid var(--line);
  color: var(--muted);
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 28, 46, 0.06);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.callout {
  margin: 32px auto 16px;
  background: #f8fbfb;
  border: 1px dashed rgba(15, 138, 141, 0.4);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
  align-items: center;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f4f6f8;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-note {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.vsl-main {
  min-height: 100vh;
}

.vsl-hero {
  width: 100%;
  padding: 0;
  margin: 0;
}

.vsl-player {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 24px;
}

.vsl-player vturb-smartplayer {
  width: 100%;
}

.offer-status {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f6f8fa;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.offer {
  margin: 12px auto 0;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  width: min(var(--max-w), 92vw);
}

.offer.is-visible {
  animation: reveal 0.6s ease;
}

.offer-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.offer-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfcfd;
}

.offer-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.offer-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta-block {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.vsl-cta {
  margin: 0 auto 16px;
  width: min(var(--max-w), 92vw);
  justify-items: center;
}

.pulse {
  animation: pulse 1.2s ease-in-out infinite;
}

.micro {
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  justify-content: center;
}

.trust-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f6f8;
  border: 1px solid var(--line);
  font-weight: 600;
}

.price-card {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f6fbfb;
  border: 1px solid rgba(15, 138, 141, 0.18);
  color: var(--ink);
  width: fit-content;
}

.price-title {
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.price-sub {
  font-size: 0.92rem;
  color: var(--muted);
}

.faq {
  margin-top: 28px;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.site-footer {
  margin-top: 56px;
  padding: 36px 0 40px;
  background: #f7f9fb;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--ink);
  margin-top: 0;
}

.site-footer p {
  margin: 8px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.disclaimer {
  font-size: 0.92rem;
  color: #3c4a59;
}

.legal {
  padding: 24px 0 8px;
}

.legal h1 {
  margin-top: 6px;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.legal-section {
  margin-top: 20px;
}

.legal-section h2 {
  margin-bottom: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden] {
  display: none !important;
}

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

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


@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 20px rgba(15, 138, 141, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 28px rgba(15, 138, 141, 0.35);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }
}

@media (max-width: 720px) {
  .brand-sub {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .video-card,
  .quiz-card,
  .offer {
    padding: 20px;
  }

  .header-actions,
  .header-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.reveal-main {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  font-weight: 600;
  font-size: 0.8rem;
}

.reveal-main:hover {
  color: var(--accent-dark);
  border-color: rgba(15, 138, 141, 0.2);
  background: rgba(15, 138, 141, 0.06);
}

.reveal-main:active {
  transform: none;
}
