:root {
  --bg: #0b0b0d;
  --bg-elev: #121216;
  --card: #15161a;
  --line: #22242b;
  --muted: #a8acb3;
  --text: #ffffff;
  --accent: #ff7a18;
  --accent-2: #ffa94d;
  --ok: #19c37d;
  --bad: #ff4d4f;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.03);
  --grad: linear-gradient(135deg, var(--accent) 0%, #ff9c40 60%, #ffd19a 100%);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

#whats-fab{
  position: fixed;            /* acompanha a tela */
  right: 22px;
  bottom: 22px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  color: #0f1115;             /* cor do ícone (currentColor) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

/* Anel pulsante elegante */
#whats-fab::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

#whats-fab:hover{
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}

/* Acessibilidade: reduz animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce){
  #whats-fab::before{ animation: none; }
}

/* Mobile - um pouco maior e mais afastado */
@media (max-width: 640px){
  #whats-fab{ right: 16px; bottom: 16px; width: 76px; height: 76px; }
  #whats-fab svg{ width: 26px; height: 26px; }
}



/* transição suave para ambos */
#planos-lateral,
#info-lateral {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
#planos-lateral:not([hidden]),
#info-lateral:not([hidden]) {
  opacity: 1;
  transform: none;
}

/* garante que o [hidden] remova da renderização */
#planos-lateral[hidden],
#info-lateral[hidden] { display: none; }

.logo-center {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
padding: 20px 0;
}
.logo-responsive {
max-height: 155px;
}

@media (max-width: 768px) {
.logo-responsive {
max-width: 450px;
}
}
@media (max-width: 480px) {
.logo-responsive {
max-width: 300px;
}
}

    /* Compare */
    .compare{padding:40px 0}
    table{width:100%; border-collapse:collapse; overflow:hidden; border-radius:14px; border:1px solid rgba(255,255,255,.06)}
    th, td{padding:14px 16px; border-bottom:1px solid #1d2026; text-align:left}
    th{background:#0e1014; color:#cfd3da; font-weight:600}
    tr:hover td{background:#0d0f12}
    .meter{height:8px; background:#0d0f12; border:1px solid #242830; border-radius:999px; overflow:hidden}
    .meter > i{display:block; height:100%; width:0}
    
        /* CTA bar */
    .cta{display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0.09)); border:1px solid rgba(255,255,255,.06); border-radius:16px; padding:20px; box-shadow:var(--shadow)}

/* Animação suave */
@keyframes fadeZoom {
0% {opacity: 0; transform: scale(0.95);}
100% {opacity: 1; transform: scale(1);}
}
.fade-in {
animation: fadeZoom 0.8s ease-out both;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(255,122,24,.08), transparent 60%),
    radial-gradient(1000px 500px at -10% 10%, rgba(255,122,24,.06), transparent 60%),
    var(--bg);
  color: var(--text);
}
    .kvs{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-top:8px}
    .kv{background:#101114; border:1px solid #23252c; border-radius:16px; padding:18px; text-align:center}
    .kv b{display:block; font-size:1.05rem; margin-top:6px}
.kvs{grid-template-columns:repeat(2, 1fr)}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/bgnuvra.png') no-repeat center center fixed;
  background-size: cover;
  opacity: .25;
  z-index: -1;
}

/* FAQ (accordion) */
.faq{padding:24px 0}
.faq-head h2{margin:8px 0 18px}
.faq-list{
  background:#0e1014; border:1px solid rgba(255,255,255,.06);
  border-radius:16px; overflow:hidden
}
.faq-item{border-bottom:1px solid #1a1d23}
.faq-item:last-child{border-bottom:0}
.faq-q{
  width:100%; padding:18px 20px; background:transparent; color:var(--text);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  cursor:pointer; border:0; text-align:left; font-size:1.05rem
}
.faq-q:hover{background:#0c0e12}
.chev{
  width:10px; height:10px; border-right:2px solid #a8acb3;
  border-bottom:2px solid #a8acb3; transform:rotate(-45deg);
  transition:transform .2s ease
}
.faq-q[aria-expanded="true"] .chev{transform:rotate(45deg)}
.faq-a{padding:0 20px 18px; color:var(--muted); line-height:1.6}

@media (max-width:640px){
  .faq{padding-inline:6px}
  .faq-head h2{margin-left:6px}
}


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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--grad);
  color: #111;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 6px 10px;
  border: 1px solid #2a2d34;
  border-radius: 999px;
  color: var(--muted);
  font-size: .85rem;
  background: #0f1014;
}

.chip-inline {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: .7rem;
  border-radius: 999px;
  border: 1px solid #2a2d34;
  background: #101217;
  color: var(--muted);
  margin-bottom: 4px;
}

.brand { display: flex; align-items: center; gap: .75rem; font-weight: 800; letter-spacing: .2px; }

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(120%) blur(10px);
  background: rgba(11,11,13,.65);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.menu { display: flex; align-items: center; gap: 28px; color: var(--muted); }

.menu a { padding: 10px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0f1014;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }

.mnav {
  display: none;
  position: sticky;
  top: 58px;
  z-index: 25;
  background: #0b0b0d;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 12px 20px;
}

.mnav a { display: block; padding: 10px 0; color: var(--muted); }

.mnav.open { display: block; }

.hero { padding: 64px 0 32px; }

.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }

.hero-media { display: grid; gap: 22px; }

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

.hero-media-item { position: relative; overflow: hidden; border-radius: 22px; background: rgba(255,255,255,.02); box-shadow: var(--shadow); }

.hero-media-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

.hero-media-caption { display: grid; gap: 10px; }

.hero h1 { font-size: clamp(28px, 4.6vw, 45px); line-height: 1.04; margin: 14px 0; }

.hero p { color: var(--muted); font-size: clamp(14px, 1.2vw, 18px); }

.hero-sub { color: #fff; font-weight: 600; font-size: clamp(16px, 1.4vw, 22px); margin-bottom: 16px; }

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.config-wrap { display: flex; flex-direction: column; gap: 3px; }

.config {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.slider-row { display: flex; align-items: center; gap: 16px; margin: 10px 0 18px; }

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #101114;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,122,24,.25);
  border: 2px solid #111;
}

.kvs { display: grid; gap: 14px; margin-top: 8px; }

.kv {
  background: #101114;
  border: 1px solid #23252c;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.kv b { display: block; font-size: 1.05rem; margin-top: 6px; }

.plan-games { margin-top: 18px; }

.plan-games small { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; }

.plan-games-list { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 10px; }

.plan-games-list span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: var(--text);
}

.summary {
  background: var(--bg-elev);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.price { font-size: 44px; font-weight: 800; letter-spacing: -.5px; }

.summary ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--muted); }

.summary li { display: flex; align-items: center; gap: .6rem; }

.badge { padding: 6px 10px; border-radius: 10px; background: #0e1014; border: 1px solid #262a31; color: #eaeef7; font-size: .85rem; }

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

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 4px 0 6px; }

.card p { color: var(--muted); margin: 0; }

.why { padding: 46px 0 10px; }

.why-header { max-width: 760px; text-align: center; margin: 0 auto 36px; display: grid; gap: 14px; }

.why-header h2 { margin: 0; }

.why-header p { color: var(--muted); margin: 0 auto; max-width: 620px; }

.why-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.features { padding: 40px 0 10px; }

.diff { padding: 70px 0 40px; }

.diff-header { text-align: center; display: grid; gap: 14px; max-width: 720px; margin: 0 auto 36px; }

.diff-header h2 { margin: 0; }

.diff-header p { color: var(--muted); }

.diff-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.diff-grid .card { min-height: 180px; }

.bench { padding: 70px 0; }

.bench-header { text-align: center; display: grid; gap: 10px; margin-bottom: 32px; }

.bench-header h2 { margin: 0; }

.bench-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 32px; }

.kpi {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.kpi-value { display: block; font-size: 32px; font-weight: 700; color: #fff; }

.kpi-label { display: block; color: var(--muted); margin-top: 6px; font-size: .95rem; }

.bench-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.bench-panels .card ul { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 8px; }

.bench-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.bench-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: var(--muted);
}

.boost {
  padding: 60px 0;
  background: radial-gradient(800px 400px at 20% -20%, rgba(255,122,24,.08), transparent 60%);
}

.boost-header { display: grid; gap: 14px; text-align: center; max-width: 680px; margin: 0 auto 32px; }

.boost-header h2 { margin: 0; }

.boost-header p { color: var(--muted); margin: 0; }

.boost-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }

.stat {
  background: var(--bg-elev);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-value { display: block; font-size: 28px; font-weight: 700; }

.stat-label { display: block; color: var(--muted); margin-top: 6px; }

.reasons { padding: 70px 0; }

.reasons-header { text-align: center; display: grid; gap: 14px; max-width: 700px; margin: 0 auto 36px; }

.reasons-header h2 { margin: 0; }

.reasons-header p { color: var(--muted); margin: 0; }

.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 30px; }

.migration-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(120deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.migration-callout h3 { margin-top: 0; margin-bottom: 8px; }

.migration-callout p { color: var(--muted); margin: 0; }

.callout-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.callout-columns > div {
  background: rgba(15,16,20,.8);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.callout-columns p { margin: 0; color: var(--muted); font-size: .95rem; }

footer { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.06); }

.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 26px 0;
  color: var(--muted);
}

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

footer .chip { justify-content: center; text-align: center; min-width: 110px; }

/* Breakpoints */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media-grid { display:none;grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header .menu { display: none; }
  .burger { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav { padding: 10px 0; }
  .btn { padding: 12px 14px; font-size: .95rem; }
  .hero { padding: 36px 0 8px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .hero-card { padding: 16px; }
  .config-wrap { gap: 14px; }
  .hero-media { gap: 16px; }
  .hero-media-grid { display:none;grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .kvs { grid-template-columns: repeat(2, 1fr); }
  .summary { padding: 16px; }
  .summary .price { font-size: 32px; }
  .bench-panels { grid-template-columns: 1fr; }
  .boost-stats { grid-template-columns: 1fr; }
  .migration-callout { grid-template-columns: 1fr; gap: 18px; }
  .foot { grid-template-columns: 1fr; gap: 12px; }
  .foot-brand { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
  .foot-links { justify-content: center; flex-wrap: wrap; }
  footer .chip { flex: 1 1 30%; min-width: 96px; }
}

@media (max-width: 480px) {
  .brand { font-size: 1rem; }
  .chip { font-size: .78rem; padding: 5px 8px; }
  .kvs .kv { padding: 14px; }
  .price { font-size: 34px; }
  .hero-media-grid { display:none;grid-template-columns: 1fr; }
  #faq { padding-inline: 24px; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .brand { font-size: .95rem; }
  .chip { font-size: .72rem; padding: 4px 7px; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 12.5px; }
  .kvs .kv { padding: 12px; }
  .btn { padding: 11px 12px; font-size: .9rem; }
  .summary .price { font-size: 28px; }
  #faq { padding-inline: 18px; }
}
