:root {
  --gold: #f0b429;
  --gold-dim: #c49a22;
  --dark: #080c10;
  --dark2: #0f1419;
  --dark3: #161d26;
  --dark4: #1e2733;
  --border: rgba(240, 180, 41, 0.12);
  --text: #e8edf2;
  --muted: #8ea1b8; /* Improved contrast from #6b7a8d */
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: default; /* Fallback */
}

/* Solo mostrar cursor custom en desktop y si no hay preferencia de reducción de movimiento */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}

.ext-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.ext-status-pill-ok {
  border-color: rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
}

/* CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
  display: none; /* Hidden by default, shown via JS if desktop */
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240, 180, 41, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.15s ease,
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-ring {
    display: block;
  }
}

/* GRAIN - Optimized with will-change and contained */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.4;
  will-change: transform;
}

/* NAV - Default (Index & Suporte) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(8, 12, 16, 0.95), transparent);
  backdrop-filter: blur(2px);
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--text);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: #f5c432 !important;
  transform: translateY(-1px);
}

/* NAV - Legal (Sticky) */
nav.nav-legal {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  transform: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(8, 12, 16, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 18px 48px;
}

.nav-back {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(240, 180, 41, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 180, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 180, 41, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
  margin: 24px auto 48px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}

/* HERO - Suporte */
.hero-suporte {
  min-height: auto;
  padding: 160px 24px 80px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(240, 180, 41, 0.08) 0%,
    transparent 70%
  );
}

.hero-suporte h1 {
  font-size: clamp(48px, 8vw, 80px);
}

.hero-suporte p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s ease forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

/* Garante que o link com classe de botão não herde a cor dourada dos textos legais */
.container-legal a.btn-primary {
  color: var(--dark);
}

.btn-primary:hover {
  background: #f5c432;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240, 180, 41, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.hero-sites {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s ease forwards;
}

.hero-sites-label {
  font-size: 12px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  letter-spacing: 1px;
}

.site-chip {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.site-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
  padding: 28px 0;
  overflow: hidden;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 48px;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* PROBLEM SECTION & SHARED SECTIONS */
.section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

main {
  width: 100%;
}

.section-tag {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* Specific Section Tag for Suporte */
.hero-suporte + main .section-tag {
  font-size: 11px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.problem-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: rgba(240, 180, 41, 0.3);
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* MOCKUP SECTION */
.mockup-section {
  padding: 80px 48px;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mockup-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(240, 180, 41, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.mockup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.mockup-text .section-tag {
  margin-bottom: 12px;
}

.mockup-text h2 {
  margin-bottom: 20px;
}

.mockup-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322C55E' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* PANEL MOCKUP */
.panel-mockup {
  background: #0d1117;
  border: 1px solid #21262d;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(240, 180, 41, 0.1),
    0 32px 64px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(240, 180, 41, 0.05);
  overflow: hidden;
  font-family: "DM Mono", monospace;
}

.pm-header {
  background: #161b22;
  border-bottom: 1px solid #21262d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-brand {
  font-family: "Bebas Neue", sans-serif;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-brand span {
  color: var(--text);
  opacity: 0.6;
}

.pm-dots {
  display: flex;
  gap: 6px;
}

.pm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pm-body {
  padding: 16px;
}

.pm-vehicle {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b949e;
  margin-bottom: 14px;
}

.pm-score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pm-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(#22c55e 270deg, #1e293b 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.pm-ring-inner {
  width: 100%;
  height: 100%;
  background: #0d1117;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pm-score-n {
  font-size: 20px;
  font-weight: 700;
  color: #e6edf3;
  line-height: 1;
}

.pm-score-l {
  font-size: 8px;
  color: #8b949e;
  letter-spacing: 1px;
}

.pm-badge {
  flex: 1;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 10px;
  color: #22c55e;
}

.pm-badge strong {
  display: block;
  font-size: 15px;
  margin-top: 2px;
}

.pm-div {
  height: 1px;
  background: #21262d;
  margin: 12px 0;
}

.pm-stitle {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #8b949e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pm-item {
  background: #161b22;
  border: 1px solid #21262d;
  border-radius: 7px;
  padding: 8px 10px;
}

.pm-item-label {
  font-size: 9px;
  color: #8b949e;
  display: block;
  margin-bottom: 3px;
}

.pm-item-val {
  font-size: 12px;
  font-weight: 600;
  color: #e6edf3;
}

.pm-item-val.gold {
  color: var(--gold);
}

.pm-item-val.green {
  color: #22c55e;
}

.pm-item-val.red {
  color: #ef4444;
}

.pm-item-val.amber {
  color: #f59e0b;
}

.pm-item.full {
  grid-column: 1/-1;
}

.pm-item.highlight {
  border-color: rgba(240, 180, 41, 0.25);
  background: rgba(240, 180, 41, 0.05);
}

.pm-lote-id {
  font-size: 9px;
  color: #6e7681;
  margin-bottom: 12px;
  opacity: 0.7;
}

.pm-auto-tag {
  font-size: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 0 4px;
  border-radius: 3px;
  margin-left: 4px;
}

.pm-input-box {
  background: #161b22;
  border: 1px solid #21262d;
  border-radius: 7px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.pm-input {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 5px;
  padding: 4px 8px;
  color: #e6edf3;
  width: 100%;
  font-size: 11px;
  margin-top: 4px;
}

.pm-textarea {
  background: #161b22;
  border: 1px solid #21262d;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  padding: 8px;
  font-size: 10px;
  color: #8b949e;
  margin-bottom: 10px;
}

.pm-footer-btns {
  display: flex;
  gap: 6px;
}

.pm-btn {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  background: #21262d;
  border: 1px solid #30363d;
  color: #8b949e;
}

.pm-btn.gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
}

.pm-km-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 3px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.how-step {
  position: relative;
}

.how-step::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -20px;
  color: var(--border);
  font-size: 24px;
}

.how-step:last-child::after {
  display: none;
}

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(240, 180, 41, 0.08);
  margin-bottom: -20px;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ (Index) */
.faq-section {
  padding: 80px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-toggle {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.2s;
  min-width: 20px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* FAQ (Suporte - Details/Summary) */
details {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

details:hover {
  border-color: rgba(240, 180, 41, 0.3);
}

summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  border-bottom: 1px solid var(--border);
  color: var(--gold);
}

.faq-body {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.1);
}

.faq-body code {
  font-family: "DM Mono", monospace;
  background: var(--dark4);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
}

/* PRICING */
.plans-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.plans-section h2 {
  margin-bottom: 12px;
}

.plans-section .intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 64px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.price-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}

.price-card:hover {
  border-color: rgba(240, 180, 41, 0.3);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1a1500 0%, var(--dark2) 60%);
}

.price-card.featured::before {
  content: "MAIS POPULAR";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.price-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 6px;
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-amount {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.price-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
}

.price-period {
  font-size: 13px;
  color: var(--muted);
}

.price-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 28px;
  min-height: 16px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.price-features li.off {
  color: var(--muted);
}

.check {
  color: var(--green);
  font-weight: 700;
  min-width: 14px;
}

.cross {
  color: var(--muted);
  min-width: 14px;
}

.btn-plan {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-plan-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-plan-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-plan-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-plan-primary:hover {
  background: #f5c432;
}

/* MONETIZATION NOTE */
.mono-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.mono-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mono-inner h2 {
  margin-bottom: 16px;
}

.mono-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.mono-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mono-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.mono-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.mono-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mono-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.mono-phase {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* SITES (Suporte) */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}

.site-tag {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-tag::before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
}

.site-tag.nops::before {
  content: "☹" !important;
  color: var(--red);
}

/* CONTACT BOX (Suporte) */
.contact-box {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

/* CTA FINAL */
.cta-section {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(240, 180, 41, 0.1) 0%,
    transparent 70%
  );
}

.cta-section h2 {
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn-primary {
  position: relative;
  font-size: 16px;
  padding: 16px 40px;
}

/* LEGAL PAGES CONTENT (Termos & Privacidade) */
.container-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.page-tag {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
  font-family: "DM Mono", monospace;
}

.highlight-box {
  background: rgba(240, 180, 41, 0.06);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text);
}

.highlight-box strong {
  color: var(--gold);
}

.container-legal h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.container-legal h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 40px 0 12px;
}

.container-legal p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.8;
}

.container-legal p.muted {
  color: var(--muted);
  font-size: 14px;
}

.container-legal ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-legal ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text);
  font-size: 15px;
}

.container-legal ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.container-legal a {
  color: var(--gold);
  text-decoration: none;
}

.container-legal a:hover {
  text-decoration: underline;
}

.container-legal a.btn-primary:hover,
.container-legal a.btn-ghost:hover,
.container-legal a.btn-download:hover {
  text-decoration: none;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px 16px;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
}

.footer-logo span {
  color: var(--text);
  opacity: 0.6;
  font-weight: 700;
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-partners-row {
  border-top: 1px solid rgba(240, 180, 41, 0.15);
  padding-top: 8px;
  margin-top: 12px;
}

.footer-partners {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-partners strong {
  color: var(--text);
  margin-right: 8px;
  white-space: nowrap;
}

.footer-partners a {
  color: var(--muted);
  white-space: nowrap;
  text-decoration: none;
}

.footer-partners a:hover {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer {
    padding: 18px 20px 12px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-note {
    order: 3;
  }

  .footer-partners-row {
    margin-top: 14px;
    padding-top: 8px;
  }

  .footer-partners strong {
    display: block;
    margin-bottom: 4px;
  }
}
.footer-partners {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

.footer-partners strong {
  color: var(--text);
  margin-right: 8px;
}

.footer-partners a {
  color: var(--muted);
  text-decoration: none;
}

.footer-partners a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-partners {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-partners strong {
    margin-right: 0;
    margin-bottom: 4px;
  }
}

/* TESTIMONIALS CAROUSEL */
.testimonials-section {
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-title-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: right;
}

.carousel-container {
  margin-top: 64px;
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.carousel-container:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 380px;
  margin-right: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Mask para efeito de fade nas laterais */
.testimonials-section::before,
.testimonials-section::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-section::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}

.testimonials-section::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-380px * 6 - 24px * 6));
  }
}

.testimonial-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-info p {
  font-size: 13px;
  color: var(--muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-content {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.arremate-info {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.arremate-value {
  font-size: 11px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  opacity: 0.9;
}

.arremate-date {
  font-size: 11px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .section,
  .mockup-section,
  .plans-section,
  .how-section,
  .faq-section {
    padding: 64px 20px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  .stat-item {
    border-right: none;
  }

  .problem-grid,
  .mockup-inner,
  .pricing-grid,
  .mono-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .mockup-inner {
    gap: 32px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   COOKIE / CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 24px;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 20px rgba(240, 180, 41, 0.1);
  animation: fadeUp 0.5s ease forwards;
  max-width: 1100px;
  margin: 0 auto;
}

#cookie-banner p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

#cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    gap: 16px;
  }
}

/* ============================================================
   OCULTAR PROVISORIAMENTE (Remova estas linhas para reativar)
   ============================================================ */
#planos,
.plans-section,
.nav-links li:nth-child(2) {
  display: none !important;
}

.mono-section {
  display: none !important;
}
