/* ── CSS Variables (design tokens) ── */
:root {
  --background: hsl(220, 30%, 6%);
  --foreground: hsl(216, 33%, 95%);
  --card: hsl(222, 28%, 11%);
  --card-foreground: hsl(216, 33%, 95%);
  --primary: hsl(43, 95%, 48%);
  --primary-foreground: hsl(220, 30%, 6%);
  --secondary: hsl(220, 25%, 8%);
  --secondary-foreground: hsl(216, 33%, 95%);
  --muted: hsl(220, 20%, 15%);
  --muted-foreground: hsl(218, 18%, 65%);
  --accent: hsl(220, 25%, 8%);
  --accent-foreground: hsl(216, 33%, 95%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(220, 20%, 18%);
  --input: hsl(220, 20%, 18%);
  --ring: hsl(43, 95%, 48%);
  --radius: 0.625rem;
  --cta-green: hsl(142, 76%, 30%);
  --cta-green-foreground: hsl(0, 0%, 100%);
  --cta-green-hover: hsl(142, 76%, 25%);
  --brand-yellow: hsl(43, 95%, 48%);
  --brand-yellow-dark: hsl(40, 50%, 39%);
  --nav-blue: hsl(217, 91%, 60%);
  --surface: hsl(222, 28%, 8%);
  --surface-2: hsl(224, 30%, 11%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
section[id] { scroll-margin-top: 5rem; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Layout ── */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-0\.5 { gap: 0.125rem; }

/* ── Grid ── */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* ── Typography ── */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ── Colors ── */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-brand { color: var(--brand-yellow); }
.text-cta { color: var(--cta-green); }
.text-white { color: #fff; }
.text-primary-foreground { color: var(--primary-foreground); }
.text-cta-foreground { color: var(--cta-green-foreground); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-surface { background-color: var(--surface); }
.bg-brand { background-color: var(--brand-yellow); }
.bg-cta { background-color: var(--cta-green); }
.bg-muted { background-color: var(--muted); }

.border { border-width: 1px; border-style: solid; }
.border-border { border-color: var(--border); }
.border-brand { border-color: var(--brand-yellow); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }

/* ── Spacing ── */
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-16 { padding-top: 4rem; }
.pb-5 { padding-bottom: 1.25rem; }
.ml-4 { margin-left: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-6 { padding-top: 1.5rem; }

/* ── Sizing ── */
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* ── Border radius ── */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.625rem; }
.rounded-md { border-radius: calc(0.625rem - 2px); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ── Position ── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.z-50 { z-index: 50; }
.-top-3 { top: -0.75rem; }
.-left-3 { left: -0.75rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.pointer-events-none { pointer-events: none; }

/* ── Shadows ── */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* ── Transitions ── */
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-all { transition: all 0.15s; }
.transition-transform { transition: transform 0.15s; }
.cursor-pointer { cursor: pointer; }

/* ── Display ── */
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.antialiased { -webkit-font-smoothing: antialiased; }

/* ── Special ── */
.fill-brand { fill: var(--brand-yellow); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.highlight-text {
  background: linear-gradient(to top, hsl(43 95% 48% / 0.2) 30%, transparent 30%);
}

.text-gradient-brand {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-dark));
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 hsl(142 70% 45% / 0.4); }
  50% { box-shadow: 0 0 20px 10px hsl(142 70% 45% / 0.1); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: hsl(220 30% 6% / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; }
.logo-text .brand { color: var(--brand-yellow); }
.logo-text .site { color: var(--foreground); }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--brand-yellow); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-cta-header {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s;
  border: none;
  cursor: pointer;
}
.btn-cta-header:hover { background-color: var(--cta-green-hover); }

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
.mobile-nav-link:hover { color: var(--foreground); background-color: var(--surface); }
.mobile-nav-link.active { color: var(--brand-yellow); background-color: var(--surface); }
.mobile-btn-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s;
}
.mobile-btn-cta:hover { background-color: var(--cta-green-hover); }

/* ── Main content ── */
main { padding-top: 4rem; flex: 1; }

/* ── Footer ── */
footer { background-color: var(--surface); border-top: 1px solid var(--border); }
footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
footer h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
footer ul a { font-size: 0.875rem; color: var(--muted-foreground); text-decoration: none; transition: color 0.15s; }
footer ul a:hover { color: var(--brand-yellow); }
footer .footer-desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
.btn-fale-conosco {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s;
}
.btn-fale-conosco:hover { background-color: var(--cta-green-hover); }
.footer-copyright { font-size: 0.75rem; color: var(--muted-foreground); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 600;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px hsl(142 76% 30% / 0.2);
  text-decoration: none;
  transition: all 0.15s;
  animation: pulse-glow 2s ease-in-out infinite;
  font-size: 0.875rem;
}
.whatsapp-float:hover { background-color: var(--cta-green-hover); transform: scale(1.05); }
.whatsapp-float span { display: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 10px 15px -3px hsl(142 76% 30% / 0.2);
}
.btn-primary:hover { background-color: var(--cta-green-hover); transform: scale(1.05); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--brand-yellow); }

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.15s;
  width: 100%;
}
.btn-outline-brand:hover { background-color: var(--brand-yellow); color: var(--primary-foreground); }

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--cta-green);
  color: var(--cta-green-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s;
  width: 100%;
}
.btn-cta-sm:hover { background-color: var(--cta-green-hover); }

.btn-text-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-yellow);
  font-weight: 500;
  text-decoration: none;
}
.btn-text-brand:hover { text-decoration: underline; }

/* ── Sections ── */
.section-py { padding-top: 4rem; padding-bottom: 4rem; }
.section-py-lg { padding-top: 6rem; padding-bottom: 6rem; }

/* ── Hero ── */
.hero { position: relative; padding: 5rem 0; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(43 95% 48% / 0.05), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(43 95% 48% / 0.1);
  color: var(--brand-yellow);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title { font-size: 2.25rem; font-weight: 800; line-height: 1.2; color: var(--foreground); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; max-width: 42rem; line-height: 1.625; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
.hero-img { width: 100%; border-radius: 1rem; }

/* ── Social proof ── */
.social-proof { padding: 3rem 0; background-color: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-value { font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Cards ── */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.15s;
}
.card:hover { border-color: hsl(43 95% 48% / 0.4); }
.card-icon { width: 2rem; height: 2rem; color: var(--brand-yellow); margin-bottom: 1rem; }
.card-title { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* ── Steps ── */
.step-card { position: relative; }
.step-badge {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--brand-yellow);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ── Table ── */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 0.75rem 1rem; color: var(--foreground); font-weight: 600; border-bottom: 1px solid var(--border); }
td { padding: 0.75rem 1rem; color: var(--muted-foreground); border-bottom: 1px solid hsl(220 20% 18% / 0.5); }
.td-brand { color: var(--brand-yellow); font-weight: 600; }
.td-foreground { color: var(--foreground); font-weight: 500; }
.td-center { text-align: center; }

/* ── FAQ accordion ── */
details {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  color: var(--foreground);
  font-weight: 500;
  list-style: none;
  transition: color 0.15s;
  gap: 1rem;
}
summary:hover { color: var(--brand-yellow); }
summary::-webkit-details-marker { display: none; }
.details-content { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
.faq-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-arrow { transform: rotate(90deg); }

/* ── Glossary ── */
.glossary-item { background-color: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.25rem; }
.glossary-term { font-size: 1rem; font-weight: 600; color: var(--brand-yellow); margin-bottom: 0.25rem; }
.glossary-def { font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Plans ── */
.plan-card {
  position: relative;
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.15s;
}
.plan-card:hover { transform: scale(1.05); }
.plan-card.highlight { border-color: var(--brand-yellow); box-shadow: 0 10px 15px -3px hsl(43 95% 48% / 0.1); }
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-yellow);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-name { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.plan-period { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.plan-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; text-align: left; }
.plan-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.plan-price { color: var(--brand-yellow); font-weight: 700; margin-bottom: 1rem; }

/* ── Testimonials ── */
.testimonial-card { background-color: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; transition: border-color 0.15s; }
.testimonial-card:hover { border-color: hsl(43 95% 48% / 0.4); }
.testimonial-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.testimonial-meta { font-size: 0.75rem; color: var(--muted-foreground); }
.stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.star { width: 1rem; height: 1rem; color: var(--brand-yellow); fill: var(--brand-yellow); }
.star.empty { fill: none; color: var(--muted); }
.testimonial-text { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* Filter buttons */
.filter-btn {
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--muted-foreground);
  transition: all 0.15s;
}
.filter-btn:hover { border-color: hsl(43 95% 48% / 0.4); }
.filter-btn.active { background-color: var(--brand-yellow); color: var(--primary-foreground); border-color: var(--brand-yellow); }

/* ── CTA Section ── */
.cta-section { padding: 4rem 0; background-color: var(--surface); }
.cta-section.gradient { background: linear-gradient(to right, hsl(43 95% 48% / 0.1), hsl(43 95% 48% / 0.05)); border-top: 1px solid hsl(43 95% 48% / 0.2); border-bottom: 1px solid hsl(43 95% 48% / 0.2); }
.cta-title { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.cta-subtitle { color: var(--muted-foreground); margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 0.75rem 0; }
.breadcrumbs ol { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--muted-foreground); flex-wrap: wrap; }
.breadcrumbs a { text-decoration: none; transition: color 0.15s; display: inline-flex; align-items: center; gap: 0.25rem; }
.breadcrumbs a:hover { color: var(--brand-yellow); }
.breadcrumbs .current { color: var(--foreground); }
.breadcrumbs .sep { width: 0.875rem; height: 0.875rem; }

/* ── Section titles ── */
.section-title { font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.section-subtitle { color: var(--muted-foreground); margin-bottom: 3rem; max-width: 42rem; }

/* ── Icons (SVG inline) ── */
svg { display: inline-block; vertical-align: middle; }

/* ── Devices grid ── */
.devices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.15s;
}
.device-card:hover { border-color: hsl(43 95% 48% / 0.4); transform: scale(1.05); }
.device-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* ── Responsive ── */
@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-actions { flex-direction: row; }
  .whatsapp-float span { display: inline; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .hero { padding: 8rem 0; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-value { font-size: 2rem; }
  .section-py-lg { padding: 6rem 0; }
  .cta-title { font-size: 2.25rem; }
  footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .btn-cta-header { display: inline-flex; }
  .mobile-toggle { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3.75rem; }
  footer .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .devices-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ── Contact page ── */
.contact-btn-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) {
  .contact-btn-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Step cards grid ── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.steps-grid-5 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .steps-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* ── Testimonials grid ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Plan desc ── */
.plan-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════
   PLANOS IPTV
   ═══════════════════════════════════════════════════ */
.py-section { padding: 4rem 0 6rem; }
@media(min-width:768px){ .py-section { padding: 6rem 0 8rem; } }

.text-center { text-align: center; }
.section-intro { max-width: 42rem; margin: 0 auto 3rem; }

.h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--foreground); margin-bottom: 1.5rem; line-height: 1.2; }
.h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; }
.h2-section { font-size: 1.75rem; font-weight: 700; color: var(--foreground); margin-bottom: 2rem; }
.lead { font-size: 1.05rem; color: var(--muted-foreground); line-height: 1.7; }

/* Plans grid */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto 4rem; }
@media(min-width:768px){ .plans-grid { grid-template-columns: repeat(3,1fr); } }

.plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform .2s;
}
.plan-card:hover { transform: scale(1.03); }
.plan-card--highlight { border-color: var(--brand); box-shadow: 0 8px 32px rgba(213,158,20,.12); }

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--primary-foreground);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-icon { color: var(--brand); margin: 0 auto 1rem; }
.plan-name { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: .25rem; }
.plan-period { font-size: .85rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.plan-desc { font-size: .85rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; display: flex; flex-direction: column; gap: .5rem; }
.plan-feature { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted-foreground); }
.plan-feature svg { color: var(--cta); flex-shrink: 0; }
.plan-price-label { color: var(--brand); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }

.btn-cta-plan {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; background: var(--cta); color: var(--cta-foreground);
  font-weight: 600; padding: .75rem 1.5rem; border-radius: var(--radius);
  font-size: .875rem; transition: background .2s; text-decoration: none;
}
.btn-cta-plan:hover { background: var(--cta-hover); }

.btn-outline-plan {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; border: 1px solid var(--brand); color: var(--brand);
  font-weight: 600; padding: .75rem 1.5rem; border-radius: var(--radius);
  font-size: .875rem; transition: background .2s, color .2s; text-decoration: none;
  background: transparent;
}
.btn-outline-plan:hover { background: var(--brand); color: var(--primary-foreground); }

/* Table */
.table-section { max-width: 48rem; margin: 0 auto 4rem; }
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; font-size: .875rem; border-collapse: collapse; }
.compare-table thead tr { border-bottom: 1px solid var(--border); }
.compare-table th { padding: .75rem 1rem; font-weight: 600; color: var(--foreground); text-align: center; }
.compare-table .th-left { text-align: left; }
.compare-table .th-brand { color: var(--brand); }
.compare-table td { padding: .75rem 1rem; color: var(--muted-foreground); border-bottom: 1px solid var(--border); text-align: center; }
.compare-table .td-left { text-align: left; color: var(--foreground); }

/* Profiles */
.profiles-section { max-width: 48rem; margin: 0 auto 4rem; }
.profiles-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px){ .profiles-grid { grid-template-columns: repeat(3,1fr); } }
.profile-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.profile-title { font-size: 1rem; font-weight: 600; color: var(--foreground); margin-bottom: .5rem; }
.profile-desc { font-size: .875rem; color: var(--muted-foreground); margin-bottom: .75rem; }
.profile-plan { font-size: .875rem; color: var(--brand); font-weight: 600; }

/* FAQ items */
.faq-section { max-width: 48rem; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-list--wide { max-width: 48rem; margin-bottom: 4rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; cursor: pointer; color: var(--foreground); font-weight: 500;
  list-style: none; transition: color .2s;
}
.faq-summary:hover { color: var(--brand); }
.faq-summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--muted-foreground); flex-shrink: 0; margin-left: 1rem; transition: transform .2s; }
details[open] .faq-arrow { transform: rotate(90deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--muted-foreground); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   CONTEÚDOS
   ═══════════════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
@media(min-width:640px){ .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .cat-grid { grid-template-columns: repeat(3,1fr); } }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s; }
.cat-card:hover { border-color: rgba(213,158,20,.4); }
.cat-icon { color: var(--brand); display: block; margin-bottom: 1rem; }
.cat-title { font-size: 1.05rem; font-weight: 600; color: var(--foreground); margin-bottom: .5rem; }
.cat-desc { font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }

.devices-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
.device-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.device-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.device-icon { color: var(--brand); }
.device-name { font-size: 1.05rem; font-weight: 600; color: var(--foreground); }
.device-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.device-step { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.step-num { color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.device-help-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--brand); margin-top: 1rem; text-decoration: none; }
.device-help-link:hover { text-decoration: underline; }

.stability-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media(min-width:640px){ .stability-grid { grid-template-columns: repeat(2,1fr); } }
.stability-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.stability-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.stability-icon { color: var(--brand); }
.stability-title { font-size: 1rem; font-weight: 600; color: var(--foreground); }
.stability-desc { font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════ */
.faq-summary-box {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 3rem; max-width: 48rem;
}
.faq-summary-title { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: .75rem; }
.faq-summary-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.faq-summary-list strong { color: var(--foreground); }

.glossary-section { max-width: 48rem; margin-top: 4rem; }
.glossary-list { display: flex; flex-direction: column; gap: 1rem; }
.glossary-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.glossary-term { font-size: 1rem; font-weight: 600; color: var(--brand); margin-bottom: .25rem; display: block; }
.glossary-def { font-size: .875rem; color: var(--muted-foreground); }
.faq-wa-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--brand); font-weight: 500; text-decoration: none; }
.faq-wa-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════════ */
.contato-wrap { max-width: 42rem; }
.contato-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.contato-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.contato-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.contato-icon { display: flex; align-items: center; }
.contato-icon--cta svg { stroke: var(--cta); }
.contato-icon--brand svg { stroke: var(--brand); }
.contato-card-title { font-size: 1.05rem; font-weight: 600; color: var(--foreground); }
.contato-card-desc { font-size: .875rem; color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.6; }
.wa-buttons-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media(min-width:640px){ .wa-buttons-grid { grid-template-columns: repeat(2,1fr); } }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--cta); color: var(--cta-foreground); font-weight: 500;
  padding: .75rem 1rem; border-radius: var(--radius); font-size: .875rem;
  transition: background .2s; text-decoration: none;
}
.wa-btn:hover { background: var(--cta-hover); }

/* ═══════════════════════════════════════════════════
   LEGAL (POLÍTICA / TERMOS)
   ═══════════════════════════════════════════════════ */
.legal-wrap { max-width: 48rem; }
.h1-legal { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--foreground); margin-bottom: 2rem; }
.legal-date { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.legal-text { color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.h2-legal { font-size: 1.2rem; font-weight: 700; color: var(--foreground); margin-top: 2rem; margin-bottom: 1rem; }
.legal-list { list-style: disc; padding-left: 1.5rem; color: var(--muted-foreground); display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .875rem; padding: 1.25rem 0; }
.breadcrumb-link { color: var(--muted-foreground); text-decoration: none; transition: color .2s; }
.breadcrumb-link:hover { color: var(--brand); }
.breadcrumb-sep { color: var(--muted-foreground); display: flex; align-items: center; }
.breadcrumb-current { color: var(--foreground); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 0; }
.cta-inner { text-align: center; max-width: 36rem; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--foreground); margin-bottom: 1rem; }
.cta-subtitle { color: var(--muted-foreground); margin-bottom: 2rem; }
.btn-cta-large {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--cta); color: var(--cta-foreground);
  font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius);
  font-size: 1rem; transition: background .2s; text-decoration: none;
}
.btn-cta-large:hover { background: var(--cta-hover); }
