/* ============================================================
   Camara TV — Design System
   Paleta: verde-esmeralda profundo + laranja vibrante (nova,
   distinta de Coupe/Caravana/Perfeição). Layout: hero assimétrico
   à esquerda com painel gráfico à direita, menu mobile em DRAWER
   lateral, cards com badge quadrado-arredondado + número decorativo,
   planos com barra de destaque no topo (sem ribbon/pill), depoimentos
   com avatar circular de iniciais e cabeçalho com estrelas ao lado
   do nome, FAQ em coluna única com faixas alternadas, rodapé com
   bloco CTA integrado + colunas assimétricas.
   ============================================================ */

:root {
  --color-brand: #0B3D2E;
  --color-brand-2: #145C45;
  --color-brand-3: #1E7A5F;
  --color-cta: #FF6B35;
  --color-cta-hover: #FF8659;
  --color-ink: #06201A;
  --color-dark-2: #0F2E24;
  --color-dark-3: #163A2D;
  --color-text-light: #FFFFFF;
  --color-text-muted: #AFC4BB;
  --color-page-bg: #F6FAF8;
  --color-card-bg: #FFFFFF;
  --color-body-on-light: #45564D;
  --color-border-light: #E2E9E4;
  --color-border-dark: rgba(255,255,255,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 34px rgba(11,61,46,0.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--color-page-bg);
  color: var(--color-body-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { color: var(--color-ink); line-height: 1.22; font-weight: 800; margin: 0 0 12px; }
p { margin: 0 0 14px; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Seções ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--color-ink); color: var(--color-text-muted); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-alt { background: #EFF6F1; }

.section-head { max-width: 680px; margin: 0 0 40px; }
.section-head-center { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-2);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--color-cta); }
.section-dark .eyebrow { color: var(--color-cta); }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .eyebrow::before { display: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-cta); color: #fff; }
.btn-primary:hover { background: var(--color-cta-hover); transform: translateY(-2px); }
.btn-dark { background: var(--color-ink); color: #fff; }
.btn-dark:hover { background: var(--color-dark-2); }
.btn-outline { background: transparent; border-color: var(--color-border-light); color: var(--color-ink); }
.btn-outline:hover { border-color: var(--color-brand-2); color: var(--color-brand-2); }
.section-dark .btn-outline,
.hero .btn-outline,
.footer-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.section-dark .btn-outline:hover,
.hero .btn-outline:hover,
.footer-cta .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 32, 26, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 900; color: #fff; }
.logo .brand-tv { color: var(--color-cta); }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  padding: 9px 15px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-desktop a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-desktop a.active { color: var(--color-ink); background: var(--color-cta); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px; height: 38px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer lateral (menu mobile) — desliza da direita, não é overlay de tela cheia nem dropdown */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(4, 16, 12, 0.55);
  z-index: 205;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: linear-gradient(200deg, var(--color-dark-2), var(--color-ink));
  z-index: 210;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 36px;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  box-shadow: -18px 0 40px rgba(0,0,0,0.35);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.nav-drawer-close {
  background: rgba(255,255,255,0.08); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer;
}
.nav-drawer nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; }
.nav-drawer a {
  padding: 14px 10px;
  font-weight: 700;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer a.active, .nav-drawer a:hover { color: var(--color-cta); }
.nav-drawer .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 16px 0 0; font-size: 13px; color: var(--color-body-on-light); }
.breadcrumbs a { color: var(--color-brand-2); font-weight: 700; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumbs .current { color: var(--color-ink); font-weight: 700; }

/* ---------- Hero: assimétrico, texto à esquerda + painel gráfico à direita ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(200deg, var(--color-ink) 0%, var(--color-brand) 70%);
  padding: 76px 0 80px;
  color: rgba(255,255,255,0.82);
}
.hero::after {
  content: "";
  position: absolute;
  top: -15%; right: -8%;
  width: 60%; height: 140%;
  background: linear-gradient(155deg, var(--color-brand-3), transparent 65%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.4;
  pointer-events: none;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: center; position: relative; z-index: 1; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--color-border-dark);
  font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: 999px; color: #fff;
}
.badge.badge-brand { background: var(--color-cta); border-color: var(--color-cta); color: #fff; }

.hero h1 { font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 18px; }
.hero h1 span { color: var(--color-cta); }
.hero-lead { font-size: 17.5px; max-width: 540px; color: rgba(255,255,255,0.78); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.hero-stats-inline { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.stat-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border-dark);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 120px;
}
.stat-chip strong { display: block; font-size: 21px; color: var(--color-cta); font-weight: 900; }
.stat-chip span { font-size: 12.5px; color: rgba(255,255,255,0.65); }

.hero-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: none;
}
.hero-visual .visual-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-visual .visual-row:last-child { border-bottom: none; }
.hero-visual .visual-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,107,53,0.18); color: var(--color-cta);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.hero-visual .visual-text strong { display: block; color: #fff; font-size: 14.5px; }
.hero-visual .visual-text span { font-size: 12.5px; color: rgba(255,255,255,0.6); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-lead { max-width: 100%; }
}

/* ---------- Cards: badge quadrado + número decorativo ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.section-dark .card { background: var(--color-dark-3); border-color: var(--color-border-dark); box-shadow: none; }
.card .card-index {
  position: absolute; top: 6px; right: 14px;
  font-size: 58px; font-weight: 900;
  color: rgba(11,61,46,0.06);
  line-height: 1;
}
.section-dark .card .card-index { color: rgba(255,255,255,0.05); }
.card .icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand-3));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 18px; position: relative; z-index: 1;
}
.card h3 { font-size: 18px; margin-bottom: 8px; position: relative; z-index: 1; }
.card p { color: var(--color-body-on-light); margin-bottom: 0; font-size: 15px; position: relative; z-index: 1; }
.section-dark .card p { color: rgba(255,255,255,0.65); }

/* ---------- Compatibilidade: grade de caixas ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 760px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
.app-box {
  border: 1px solid var(--color-border-dark);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

/* ---------- Planos: barra de destaque no topo, sem ribbon/pill ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.plan-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--color-border-light);
}
.plan-card.featured {
  border-color: var(--color-cta);
  box-shadow: 0 22px 46px rgba(255,107,53,0.18);
  transform: translateY(-10px);
}
.plan-card.featured::before { height: 8px; background: linear-gradient(90deg, var(--color-brand-2), var(--color-cta)); }
.plan-tag-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; color: var(--color-brand-2);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}
.plan-tag-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.plan-card h3 { font-size: 19px; margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price .currency { font-size: 18px; font-weight: 800; color: var(--color-brand-2); }
.plan-price .value { font-size: 38px; font-weight: 900; color: var(--color-ink); }
.plan-period { font-size: 13px; color: var(--color-body-on-light); margin-bottom: 20px; }
.plan-features { margin-bottom: 24px; }
.plan-features li { display: flex; gap: 10px; padding: 8px 0; font-size: 14.5px; border-top: 1px solid var(--color-border-light); }
.plan-features li:first-child { border-top: none; }
.plan-features li::before { content: "✓"; color: var(--color-brand-2); font-weight: 900; flex-shrink: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-brand), var(--color-brand-2));
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Números / prova social ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-box {
  background: #fff; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat-box strong { display: block; font-size: 32px; font-weight: 900; color: var(--color-brand-2); }
.stat-box span { font-size: 13.5px; color: var(--color-body-on-light); }

/* ---------- Depoimentos: avatar circular, estrelas junto ao nome ---------- */
.testimonial {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
}
.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar-circle {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-brand-3), var(--color-cta));
  color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-name { font-weight: 800; color: #fff; font-size: 14.5px; }
.testimonial-city { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.testimonial-stars { color: var(--color-cta); font-size: 13px; margin-top: 2px; letter-spacing: 1px; }
.testimonial p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin-bottom: 0; }

/* ---------- Blog ---------- */
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft);
}
.blog-thumb {
  height: 130px; display: flex; align-items: center; justify-content: center;
  font-size: 40px; background: linear-gradient(135deg, var(--color-brand), var(--color-brand-3));
}
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-meta { font-size: 12px; font-weight: 800; color: var(--color-brand-2); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card-body h3 { font-size: 17px; margin-bottom: 0; }
.blog-card-body p { font-size: 14px; margin-bottom: 0; flex: 1; }
.blog-read { font-size: 13.5px; font-weight: 800; color: var(--color-cta); }

.blog-filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--color-border-light); font-size: 13.5px; font-weight: 700; color: var(--color-body-on-light); }

/* ---------- Artigo ---------- */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-hero { margin-bottom: 30px; }
.article-hero h1 { font-size: clamp(26px, 4vw, 38px); }
.article-body h2 { font-size: 22px; margin-top: 34px; }
.article-body p, .article-body li { font-size: 16px; color: var(--color-body-on-light); }
.article-body ul { margin: 14px 0; padding-left: 4px; }
.article-body li { display: flex; gap: 10px; padding: 6px 0; }
.article-body li::before { content: "▸"; color: var(--color-brand-2); font-weight: 900; }
.article-share { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* ---------- FAQ: coluna única, faixas alternadas ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
  padding: 4px 0;
}
.faq-item:nth-child(even) { background: rgba(20,92,69,0.03); }
.faq-question {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-ink);
}
.faq-toggle-dot {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: #EFF6F1; color: var(--color-brand-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform 0.25s ease;
}
.faq-item.open .faq-toggle-dot { background: var(--color-cta); color: #fff; transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; padding: 0 14px; }
.faq-answer p { padding: 0 0 20px 44px; color: var(--color-body-on-light); margin: 0; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ---------- Footer: bloco CTA + colunas assimétricas ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.65); padding-top: 60px; }
.footer-cta {
  background: linear-gradient(120deg, var(--color-brand-2), var(--color-brand));
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.footer-cta h3 { color: #fff; margin-bottom: 4px; font-size: 21px; }
.footer-cta p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.footer-split { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 780px) { .footer-split { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 340px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 560px) { .footer-links-grid { grid-template-columns: 1fr; } }
.footer-links-grid h4 { color: #fff; font-size: 14.5px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-links-grid a:hover { color: var(--color-cta); }
.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 22px 0 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px;
}
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.4); padding-bottom: 30px; max-width: 900px; }

.whatsapp-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--color-cta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 12px 26px rgba(255,107,53,0.4);
}

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .plans-grid, .stats-row { gap: 16px; }
}
