/* ============================================================
   bobardi TV — Folha de estilos principal
   Identidade visual: Dark Premium · Green Signal · Orange CTA
   ============================================================ */

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

:root {
  --verde:        #00d48e;
  --verde-dark:   #00a370;
  --verde-claro:  rgba(0,212,142,.12);
  --laranja:      #f97316;
  --laranja-dark: #ea6c0a;
  --ouro:         #fbbf24;
  --bg:       #07090f;
  --bg2:      #0c0f1a;
  --bg3:      #101525;
  --surface:  #121829;
  --surface2: #19213a;
  --border:   #1c2840;
  --border2:  #263350;
  --text:  #dde6f5;
  --muted: #7f93b0;
  --white: #f8fafc;
  --grad-brand:   linear-gradient(135deg, #00d48e 0%, #0ea5e9 100%);
  --grad-cta:     linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --grad-surface: linear-gradient(135deg, #121829 0%, #07090f 100%);
  --grad-hero:    linear-gradient(155deg, #07090f 0%, #0c0f1a 55%, #0d1728 100%);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,212,142,.15);
  --shadow-lg: 0 8px 48px rgba(0,212,142,.2);
  font-size: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--verde); text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: var(--surface); color: #6ee7b7; padding: 2px 6px; border-radius: 4px; font-size: .9em; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

.skip-link { position: absolute; top: -999px; left: -999px; background: var(--verde); color: #000; padding: 8px 16px; border-radius: 4px; z-index: 9999; }
.skip-link:focus { top: 8px; left: 8px; }
:focus-visible { outline: 2px solid var(--verde); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* --- TOPBAR --- */
.topbar { background: linear-gradient(90deg, #0a1a12 0%, #0c1e16 50%, #0a1a12 100%); border-bottom: 1px solid rgba(0,212,142,.2); color: var(--verde); font-size: .82rem; text-align: center; padding: 10px 0; letter-spacing: .03em; font-weight: 500; }
.topbar strong { color: var(--white); }
.topbar-badge { display:inline-block; background: var(--grad-cta); color:#fff; font-size:.68rem; font-weight:800; padding:2px 8px; border-radius:10px; margin-right:6px; letter-spacing:.06em; text-transform:uppercase; }

/* --- HEADER --- */
.site-header { background: rgba(7,9,15,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }

/* --- BRAND --- */
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; line-height: 1.15; }
.brand:hover { text-decoration: none; opacity: .9; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--grad-brand); border-radius: 11px; flex-shrink: 0; box-shadow: 0 0 20px rgba(0,212,142,.35); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy small { font-size: .54rem; font-weight: 600; letter-spacing: .14em; color: var(--verde); text-transform: uppercase; font-family: 'Inter', sans-serif; margin-top: 3px; }

/* --- MENU --- */
.menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.menu a { display: inline-block; padding: 7px 12px; border-radius: 8px; color: var(--text); font-size: .88rem; transition: background .2s, color .2s; }
.menu a:hover { background: var(--surface); color: var(--verde); text-decoration: none; }
.menu a[aria-current] { color: var(--verde); }
.menu a.btn { padding: 8px 18px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border2); color: var(--text); border-radius: 8px; padding: 8px 12px; cursor: pointer; font-size: 1.1rem; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: 10px; font-weight: 700; font-size: .9rem; cursor: pointer; text-decoration: none; border: 2px solid transparent; transition: all .2s; line-height: 1.3; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--cta { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(249,115,22,.35); }
.btn--cta:hover { opacity: .92; box-shadow: 0 6px 28px rgba(249,115,22,.5); color: #fff; }
.btn--verde { background: var(--verde); color: #000; border-color: transparent; box-shadow: 0 4px 20px rgba(0,212,142,.3); font-weight: 800; }
.btn--verde:hover { background: var(--verde-dark); color: #000; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--verde); color: var(--verde); }
.btn--ghost-verde { background: transparent; color: var(--verde); border-color: var(--verde); }
.btn--ghost-verde:hover { background: var(--verde); color: #000; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; font-family: 'Poppins', sans-serif; font-weight: 800; }

/* --- HERO --- */
.hero { background: var(--grad-hero); padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-200px; right:-150px; width:700px; height:700px; background:radial-gradient(circle, rgba(0,212,142,.1) 0%, transparent 65%); pointer-events:none; }
.hero::after { content:''; position:absolute; bottom:-150px; left:-100px; width:500px; height:500px; background:radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 65%); pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-family: 'Poppins', sans-serif; font-weight: 900; line-height: 1.08; color: var(--white); margin-bottom: 20px; letter-spacing: -.025em; }
.hero h1 em { font-style: normal; color: var(--verde); }
.hero .lead { font-size: 1.08rem; color: var(--muted); margin-bottom: 32px; max-width: 560px; line-height: 1.7; }
.breadcrumb { margin-bottom: 14px; font-size: .82rem; color: var(--muted); }
.breadcrumb ol { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.breadcrumb ol li::after { content: '›'; margin-left: 6px; opacity: .5; }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--verde); }
.eyebrow { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--verde); margin-bottom:14px; background:rgba(0,212,142,.1); padding:5px 14px; border-radius:20px; border:1px solid rgba(0,212,142,.25); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); }
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust b { color: var(--white); }

/* TV Screen visual */
.tv-screen { position:relative; background:var(--surface); border:2px solid var(--border2); border-radius:var(--radius-lg); padding:20px; box-shadow:0 0 60px rgba(0,212,142,.12), var(--shadow-lg); overflow:hidden; }
.tv-screen::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(0,212,142,.05) 0%, transparent 60%); pointer-events:none; }
.tv-screen-header { display:flex; align-items:center; gap:8px; margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid var(--border); }
.tv-dot { width:10px; height:10px; border-radius:50%; }
.tv-dot--r { background:#ef4444; } .tv-dot--y { background:#f59e0b; } .tv-dot--g { background:var(--verde); }
.tv-screen-title { font-size:.78rem; color:var(--muted); margin-left:auto; letter-spacing:.1em; text-transform:uppercase; }
.tv-channel-list { display:flex; flex-direction:column; gap:10px; }
.tv-channel { display:flex; align-items:center; gap:12px; background:var(--surface2); border:1px solid var(--border); border-radius:10px; padding:12px 14px; transition:border-color .2s; }
.tv-channel:hover { border-color:var(--verde); }
.tv-channel-ico { font-size:1.3rem; width:36px; text-align:center; flex-shrink:0; }
.tv-channel-info { flex:1; min-width:0; }
.tv-channel-name { font-size:.88rem; font-weight:600; color:var(--white); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tv-channel-meta { font-size:.74rem; color:var(--muted); }
.tv-badge { font-size:.62rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:#fff; padding:2px 6px; border-radius:4px; flex-shrink:0; }
.tv-badge--live { background:#ef4444; animation:pulse-badge 2s ease-in-out infinite; }
.tv-badge--4k { background:var(--verde); color:#000; }
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.65} }
.tv-footer { margin-top:16px; padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; font-size:.8rem; color:var(--muted); }
.tv-footer strong { color:var(--verde); }

/* --- STATS BAR --- */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 8px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--verde); letter-spacing: -.02em; line-height: 1.1; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .07em; }

/* --- SECTION HEAD --- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); font-family: 'Poppins', sans-serif; font-weight: 900; color: var(--white); margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.2; }
.section-head h2 em { font-style: normal; color: var(--verde); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
section { padding: 64px 0; }
section:nth-child(even) { background: var(--bg2); }

/* --- CARDS --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; transition: border-color .25s, transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--grad-brand); opacity:0; transition:opacity .25s; }
.card:hover { border-color: var(--verde); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,212,142,.14); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card p, .card li { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.card a { color: var(--verde); font-weight: 600; }
.ico { font-size: 2rem; margin-bottom: 16px; display: block; }

/* --- TLDR / LEAD --- */
.tldr { background:rgba(0,212,142,.07); border:1px solid rgba(0,212,142,.2); border-left:4px solid var(--verde); border-radius:0 var(--radius) var(--radius) 0; padding:20px 24px; margin:24px 0 32px; }
.tldr strong { display:block; font-size:1rem; margin-bottom:8px; color:var(--white); }
.tldr p, .tldr ul, .tldr li { color:var(--text); }
.tldr a { color:var(--verde); font-weight:600; }
.tldr ul { list-style:disc; padding-left:20px; }
.tldr li { margin-bottom:4px; }
.lead-answer { font-size:1.06rem; color:var(--text); border-left:3px solid var(--verde); border-radius:0 8px 8px 0; padding:16px 20px; margin:18px 0 26px; line-height:1.75; background:rgba(0,212,142,.05); }
.tick { display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; background:var(--verde); color:#000; border-radius:50%; font-size:.68rem; font-weight:800; flex-shrink:0; margin-top:2px; }

/* --- PLANOS --- */
.planos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 28px 0 48px; }
.plano { background:var(--surface); border:2px solid var(--border); border-radius:var(--radius-lg); padding:34px 28px; display:flex; flex-direction:column; gap:18px; position:relative; transition:border-color .2s, box-shadow .2s; }
.plano:hover { border-color:var(--verde); box-shadow:0 0 40px rgba(0,212,142,.12); }
.plano--destaque { border-color:var(--verde); background:linear-gradient(160deg, #121829 0%, rgba(0,212,142,.08) 100%); box-shadow:0 0 50px rgba(0,212,142,.15), 0 0 100px rgba(0,212,142,.06); }
.plano--destaque::before { content:'MAIS POPULAR'; position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--verde); color:#000; font-size:.68rem; font-weight:900; letter-spacing:.12em; padding:5px 18px; border-radius:20px; white-space:nowrap; }
.plano h3 { font-size:1.2rem; font-weight:800; color:var(--white); }
.preco { line-height:1.1; }
.preco strong { font-size:2.4rem; font-weight:900; color:var(--white); font-family:'Poppins',sans-serif; }
.preco small { font-size:.85rem; color:var(--muted); }
.economia { display:inline-block; background:rgba(0,212,142,.15); color:var(--verde); border:1px solid rgba(0,212,142,.3); font-size:.78rem; font-weight:700; padding:4px 12px; border-radius:20px; letter-spacing:.04em; }
.plano ul { display:flex; flex-direction:column; gap:10px; flex:1; }
.plano li { display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color:var(--muted); }
.plano .btn { width:100%; }

/* --- TABLE --- */
.tabela-wrap { overflow-x:auto; margin:20px 0 36px; border-radius:var(--radius); }
table { background:var(--surface); border-radius:var(--radius); overflow:hidden; }
thead tr { background:var(--surface2); }
th { text-align:left; padding:14px 16px; font-size:.82rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; border-bottom:1px solid var(--border); }
td { padding:14px 16px; font-size:.9rem; color:var(--text); border-bottom:1px solid var(--border); vertical-align:top; }
tr:last-child td { border-bottom:none; }
caption { caption-side:bottom; font-size:.78rem; color:var(--muted); text-align:left; padding:8px 16px; }
td strong { color:var(--verde); }

/* --- DISPOSITIVOS --- */
.dispositivos { display:flex; flex-direction:column; gap:10px; padding-left:0; margin:20px 0; }
.dispositivos li { padding:14px 18px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); font-size:.92rem; color:var(--text); transition:border-color .2s; }
.dispositivos li:hover { border-color:var(--verde); }

/* --- PASSOS --- */
.passos { display:flex; flex-direction:column; gap:12px; margin:24px 0 44px; }
.passo { display:flex; gap:20px; align-items:flex-start; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px 22px; transition:border-color .2s; }
.passo:hover { border-color:rgba(0,212,142,.35); }
.num { display:flex; align-items:center; justify-content:center; width:44px; height:44px; background:var(--grad-brand); color:#000; border-radius:50%; font-family:'Poppins',sans-serif; font-size:1.05rem; font-weight:900; flex-shrink:0; box-shadow:0 4px 14px rgba(0,212,142,.35); }
.passo h3 { font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:6px; }
.passo p { font-size:.9rem; color:var(--muted); line-height:1.65; }
.passo a { color:var(--verde); }

/* --- PROSE --- */
.prose { max-width:780px; margin:0 auto; }
.prose h2 { font-size:clamp(1.3rem, 2.3vw, 1.8rem); font-family:'Poppins',sans-serif; font-weight:800; color:var(--white); margin:40px 0 14px; letter-spacing:-.015em; }
.prose h2:first-child { margin-top:0; }
.prose h3 { font-size:1.05rem; font-weight:700; color:var(--white); margin:28px 0 10px; }
.prose p { color:var(--text); margin-bottom:16px; line-height:1.75; }
.prose ul, .prose ol { margin:0 0 20px 24px; }
.prose ul { list-style:disc; }
.prose ol { list-style:decimal; }
.prose li { color:var(--text); margin-bottom:8px; line-height:1.65; }
.prose a { color:var(--verde); font-weight:600; }
.prose strong { color:var(--white); }

/* --- CTA BAND --- */
.cta-band { background:linear-gradient(135deg, #0a1a12 0%, #0c1e16 100%); border-top:1px solid rgba(0,212,142,.15); border-bottom:1px solid rgba(0,212,142,.15); padding:76px 0; text-align:center; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:300px; background:radial-gradient(ellipse, rgba(0,212,142,.08) 0%, transparent 70%); pointer-events:none; }
.cta-band h2 { font-size:clamp(1.5rem, 2.8vw, 2.3rem); font-family:'Poppins',sans-serif; font-weight:900; color:var(--white); margin-bottom:14px; letter-spacing:-.02em; position:relative; }
.cta-band p { color:var(--muted); font-size:1.06rem; margin-bottom:36px; max-width:580px; margin-left:auto; margin-right:auto; position:relative; }

/* --- FAQ --- */
.faq { display:flex; flex-direction:column; gap:6px; margin:12px 0 44px; }
.faq details { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.faq details[open] { border-color:var(--verde); }
.faq summary { cursor:pointer; padding:18px 20px; font-size:.97rem; font-weight:600; color:var(--white); background:var(--surface); display:flex; justify-content:space-between; align-items:center; list-style:none; transition:background .2s; user-select:none; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:'+'; font-size:1.2rem; color:var(--verde); flex-shrink:0; }
.faq details[open] summary::after { content:'−'; }
.faq summary:hover { background:var(--surface2); }
.resposta { padding:20px 20px 24px; background:var(--bg2); border-top:1px solid var(--border); }
.resposta p { color:var(--muted); font-size:.92rem; line-height:1.7; margin:0; }
.resposta a { color:var(--verde); font-weight:600; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(290px, 1fr)); gap:20px; margin:28px 0 44px; }
.testimonial-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; display:flex; flex-direction:column; gap:12px; transition:border-color .2s; }
.testimonial-card:hover { border-color:rgba(0,212,142,.3); }
.testimonial-header { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:44px; height:44px; background:var(--grad-brand); color:#000; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.95rem; }
.testimonial-info h4 { font-size:.93rem; color:var(--white); font-weight:700; margin:0; }
.testimonial-info small { font-size:.78rem; color:var(--muted); }
.testimonial-body { font-size:.88rem; color:var(--text); font-style:italic; line-height:1.65; }
.stars { color:#fbbf24; font-size:.88rem; letter-spacing:2px; }
.google-review-cta { display:flex; justify-content:center; margin-top:12px; }

/* --- STEPS GRID --- */
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:20px; margin:28px 0 44px; }
.step-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px 24px; text-align:center; position:relative; transition:border-color .25s, transform .25s; }
.step-card:hover { border-color:rgba(0,212,142,.4); transform:translateY(-3px); }
.step-number { position:absolute; top:-18px; left:50%; transform:translateX(-50%); width:36px; height:36px; background:var(--verde); color:#000; font-weight:900; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.9rem; box-shadow:0 4px 12px rgba(0,212,142,.4); }
.step-card h3 { font-size:1.08rem; color:var(--white); margin:12px 0 8px; font-weight:700; }
.step-card p { font-size:.88rem; color:var(--muted); }

/* --- DEVICES --- */
.devices-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(170px, 1fr)); gap:14px; margin:20px 0 40px; }
.device-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:20px; text-align:center; transition:transform .2s, border-color .2s; }
.device-item:hover { transform:translateY(-3px); border-color:var(--verde); }
.device-item .ico { font-size:2rem; margin-bottom:8px; }
.device-item h4 { font-size:.92rem; color:var(--white); font-weight:600; }
.device-item small { font-size:.75rem; color:var(--muted); }

/* --- FOOTER --- */
.site-footer { background:var(--bg2); border-top:1px solid var(--border); padding:56px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr repeat(3, 1fr); gap:40px; margin-bottom:44px; }
.footer-grid h4 { font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--verde); margin-bottom:16px; }
.footer-grid ul { display:flex; flex-direction:column; gap:8px; }
.footer-grid li a { color:var(--muted); font-size:.88rem; transition:color .2s; }
.footer-grid li a:hover { color:var(--verde); text-decoration:none; }
.footer-disclaimer { font-size:.78rem; color:var(--muted); border-top:1px solid var(--border); padding-top:24px; margin-top:0; line-height:1.65; margin-bottom:14px; }
.footer-bottom { font-size:.78rem; color:var(--muted); line-height:1.7; }
.footer-bottom strong { color:var(--text); }
.footer-bottom a { color:var(--muted); }
.footer-bottom a:hover { color:var(--verde); }

/* --- WHATSAPP FLOAT --- */
.whats-float { position:fixed; bottom:24px; right:24px; width:58px; height:58px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.45); z-index:999; transition:transform .2s, box-shadow .2s; text-decoration:none; }
.whats-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,.6); }

/* --- MODAL MAPA --- */
.mapa-btn{display:inline-flex;align-items:center;gap:8px;background:var(--surface);border:1px solid var(--border);color:var(--text);padding:10px 18px;border-radius:10px;font-size:.85rem;font-weight:600;cursor:pointer;transition:border-color .2s,background .2s;text-decoration:none}
.mapa-btn:hover{border-color:var(--verde);background:var(--surface2);color:var(--verde)}
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.8);z-index:1000;align-items:center;justify-content:center;padding:20px}
.modal-overlay.aberto{display:flex}
.modal-box{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);width:100%;max-width:760px;overflow:hidden;box-shadow:var(--shadow-lg)}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--border)}
.modal-header h3{font-size:1rem;font-weight:700;color:var(--white);margin:0}
.modal-close{background:transparent;border:none;color:var(--muted);font-size:1.5rem;cursor:pointer;padding:4px 8px;border-radius:6px;transition:background .2s,color .2s}
.modal-close:hover{background:var(--surface2);color:var(--verde)}
.modal-box iframe{display:block;width:100%;height:420px;border:0}
.modal-address{padding:14px 20px;font-size:.88rem;color:var(--muted);border-top:1px solid var(--border);line-height:1.6}
.modal-address strong{color:var(--white)}

/* --- SCROLLBAR / SELECTION --- */
::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:var(--bg)}::-webkit-scrollbar-thumb{background:var(--border2);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--verde)}
::selection{background:rgba(0,212,142,.3);color:var(--white)}

/* --- ANIMAÇÕES --- */
@media (prefers-reduced-motion:no-preference) {
  .card,.plano,.passo,.step-card,.testimonial-card{animation:fadeUp .45s ease both}
  @keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
}

/* --- BADGE LIVE --- */
.badge-live{display:inline-flex;align-items:center;gap:6px;font-size:.68rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#fff;background:rgba(239,68,68,.85);padding:3px 8px;border-radius:4px}
.badge-live::before{content:'';width:7px;height:7px;background:#fff;border-radius:50%;animation:pulse-dot 1.4s ease-in-out infinite}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.7)}}
.grad-text{background:var(--grad-brand);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* --- RESPONSIVE --- */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .tv-screen{display:none}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid .stat-item:nth-child(2){border-right:none}
  .stats-grid .stat-item:nth-child(3){border-top:1px solid var(--border)}
  .stats-grid .stat-item:nth-child(4){border-top:1px solid var(--border);border-right:none}
  .menu{display:none;position:absolute;top:100%;left:0;right:0;background:var(--bg2);flex-direction:column;padding:16px 20px;gap:4px;border-bottom:1px solid var(--border)}
  .menu.aberto{display:flex}
  .menu a{width:100%}
  .menu-toggle{display:flex}
  .planos{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
@media (max-width:600px){
  .hero{padding:44px 0 56px}
  .hero h1{font-size:2rem}
  .footer-grid{grid-template-columns:1fr}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{width:100%;justify-content:center}
  .hero-trust{flex-direction:column;gap:8px}
  .stats-grid{grid-template-columns:1fr 1fr}
}
