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


:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --card: #16161f;
  --border: #ffffff12;
  --accent: #e50914;
  --accent2: #ff6b35;
  --text: #f0f0f0;
  --muted: #888;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  background: transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,6,10,.95);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(255,255,255,.07);
}

/* LOGO */
.logo {
  display: inline-flex; align-items: center; gap: 3px;
  text-decoration: none; flex-shrink: 0;
}
.logo-v7 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 1px;
  color: var(--accent);
  line-height: 1;
}
.footer-logo { margin-bottom: 20px; }

/* NAV LINKS */
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
  letter-spacing: .1px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a:hover::after { width: 60%; }

/* NAV RIGHT */
.nav-right { display: flex; align-items: center; gap: 10px; }

/* BTN NAV */
.btn-nav {
  background: linear-gradient(135deg, var(--accent), #b5000c);
  color: #fff; padding: 9px 20px;
  border-radius: 9px; text-decoration: none; font-weight: 700; font-size: .83rem;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 16px rgba(229,9,20,.35);
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
  letter-spacing: .2px;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(229,9,20,.55); }

.menu-toggle {
  display: none; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.menu-toggle:hover { background: rgba(255,255,255,.14); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,6,10,.98); backdrop-filter: blur(28px);
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-close {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-links {
  display: flex; flex-direction: column;
  padding: 20px 5%; gap: 4px; flex: 1;
}
.mobile-menu-links a {
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  padding: 15px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  transition: color .2s, background .2s;
}
.mobile-menu-links a i {
  width: 20px; text-align: center; font-size: .95rem;
  color: var(--muted); transition: color .2s; flex-shrink: 0;
}
.mobile-menu-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.mobile-menu-links a:hover i { color: var(--accent); }
.mobile-menu-cta {
  margin: 0 5% 44px;
  background: linear-gradient(135deg, var(--accent), #b5000c);
  color: #fff !important; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 17px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(229,9,20,.4);
  transition: transform .2s, box-shadow .2s;
}
.mobile-menu-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(229,9,20,.6); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('ChatGPT Image 25 de mar. de 2026, 08_18_02.png') center/cover no-repeat;
  transform: scale(1.06);
  filter: brightness(.45);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,10,.3) 0%, rgba(6,6,10,.0) 30%, rgba(6,6,10,.7) 80%, rgba(6,6,10,1) 100%),
    linear-gradient(to right, rgba(6,6,10,.85) 0%, rgba(6,6,10,.3) 55%, rgba(6,6,10,.6) 100%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .35; pointer-events: none;
}

/* Orbs de luz de fundo */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,9,20,.18) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
  bottom: 0; right: 10%;
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 130px 5% 90px;
  gap: 60px; max-width: 1300px; margin: 0 auto; width: 100%;
}

.hero-content { max-width: 600px; flex-shrink: 0; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75); padding: 8px 18px; border-radius: 50px; font-size: .78rem;
  margin-bottom: 28px; letter-spacing: .8px; font-weight: 500;
  backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #e50914; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(229,9,20,.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(229,9,20,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(229,9,20,.1); }
}

/* Título */
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 900; line-height: 1.06;
  letter-spacing: -2.5px; margin-bottom: 24px; color: #fff;
}
.hero-content h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  color: rgba(255,255,255,.58); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 40px; max-width: 500px;
}

/* Botões */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c0000f);
  color: #fff; padding: 15px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(229,9,20,.45);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  letter-spacing: .3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(229,9,20,.6); }
.btn-ghost {
  background: rgba(255,255,255,.07); color: #fff; padding: 15px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  border: 1px solid rgba(255,255,255,.18); transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 9px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }

/* Stats */
.hero-stats {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 18px 8px;
  backdrop-filter: blur(12px);
}
.stat { text-align: center; padding: 0 20px; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
.stat span { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; display: block; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── HERO VISUAL (lado direito) ── */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.hero-screen {
  width: 340px;
  background: rgba(10,10,16,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
}
.hero-screen-inner { padding: 0; }

/* Barra de browser */
.hs-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hs-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.hs-dot.r { background: #ff5f57; }
.hs-dot.y { background: #febc2e; }
.hs-dot.g { background: #28c840; }
.hs-url {
  flex: 1; text-align: center; font-size: .7rem;
  color: rgba(255,255,255,.3); letter-spacing: .5px;
  background: rgba(255,255,255,.05); border-radius: 6px; padding: 3px 10px;
}

/* Posters */
.hs-content {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; padding: 12px;
}
.hs-poster {
  height: 110px; border-radius: 10px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.hs-poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
}
.p1 { background-color: #1a0a0a; background-image: linear-gradient(135deg, #3a0a0a, #1a0505); }
.p2 { background-color: #0a0a1a; background-image: linear-gradient(135deg, #0a0a3a, #050515); }
.p3 { background-color: #0a1a0a; background-image: linear-gradient(135deg, #0a2a0a, #051505); }

/* Player bar */
.hs-player {
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hs-player-info {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
}
.hs-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.hs-player-info span {
  font-size: .65rem; font-weight: 700; color: var(--accent); letter-spacing: 1.5px;
}
.hs-progress {
  height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.hs-progress-fill {
  height: 100%; width: 60%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  animation: progress-anim 4s ease-in-out infinite alternate;
}
@keyframes progress-anim { from { width: 40%; } to { width: 80%; } }

/* Floating badges sobre o visual */
.hero-float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,10,18,.88); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  white-space: nowrap;
}
.hero-float-badge i { font-size: 1.1rem; flex-shrink: 0; }
.hero-float-badge strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; }
.hero-float-badge span { font-size: .68rem; color: var(--muted); }

.hfb-1 { top: -18px; left: -60px; }
.hfb-1 i { color: #e50914; }
.hfb-2 { bottom: 60px; left: -70px; }
.hfb-2 i { color: #06d6a0; }
.hfb-3 { top: 50%; right: -60px; transform: translateY(-50%); }
.hfb-3 i { color: #ffd60a; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.3); font-size: .85rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTIONS ── */
.section { padding: 90px 0; }
.section-dark { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-label {
  color: var(--accent); font-size: .75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px;
  display: block;
}
.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900;
  letter-spacing: -1px; margin-bottom: 14px;
}
.section h2 span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-bottom: 52px; max-width: 520px; }

/* ── DEVICES ── */
.devices-section { background: var(--bg); }

.devices-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.devices-header-left { flex: 1; min-width: 260px; }
.devices-header-left .section-sub { margin-bottom: 0; }
.devices-header-right {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 24px; flex-shrink: 0;
}
.devices-stat { text-align: center; padding: 0 20px; }
.devices-stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
.devices-stat span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.devices-stat-div { width: 1px; height: 36px; background: var(--border); }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.device-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  display: flex; align-items: center; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.device-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--clr-rgb),.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.device-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.device-card:hover::before { opacity: 1; }

.device-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: color-mix(in srgb, var(--clr) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--clr) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--clr);
  transition: transform .3s;
}
.device-card:hover .device-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.device-info { flex: 1; }
.device-info h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.device-info p { font-size: .78rem; color: var(--muted); }

.device-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(229,9,20,.15); border: 1px solid rgba(229,9,20,.25);
  color: var(--accent); font-size: .62rem; font-weight: 700;
  padding: 3px 9px; border-radius: 50px; letter-spacing: .5px;
  text-transform: uppercase;
}

.devices-footer-banner {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(6,214,160,.07); border: 1px solid rgba(6,214,160,.2);
  border-radius: 12px; padding: 14px 20px;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.devices-footer-banner i { color: #06d6a0; font-size: 1rem; flex-shrink: 0; }
.devices-footer-banner strong { color: #fff; }

/* ── PLANS ── */
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 0 0 28px; position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1e0a0a 0%, var(--card) 60%);
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(229,9,20,.25);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); box-shadow: 0 24px 64px rgba(229,9,20,.4); }

/* Top color bar */
.plan-top-bar {
  height: 4px; width: 100%; flex-shrink: 0;
}
.bar-basic  { background: linear-gradient(90deg, #555, #888); }
.bar-featured { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.bar-anual  { background: linear-gradient(90deg, #00b4d8, #06d6a0); }

/* Plan inner padding wrapper */
.plan-card > *:not(.plan-top-bar):not(.plan-glow) { padding-left: 28px; padding-right: 28px; }
.plan-card > .plan-features { padding-left: 28px; padding-right: 28px; }

/* Icon wrap */
.plan-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 28px 0 20px 28px;
  flex-shrink: 0;
}
.basic-wrap    { background: rgba(255,255,255,.07); color: #aaa; }
.featured-wrap { background: rgba(229,9,20,.18); color: var(--accent); }
.anual-wrap    { background: rgba(0,180,216,.15); color: #00b4d8; }

.badge-popular {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff; font-size: .68rem; font-weight: 700; padding: 5px 12px;
  border-radius: 50px; white-space: nowrap; letter-spacing: .5px;
}
.badge-economy {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(90deg, #00b4d8, #06d6a0);
  color: #000; font-size: .68rem; font-weight: 700; padding: 5px 12px;
  border-radius: 50px; white-space: nowrap; letter-spacing: .5px;
}

.plan-header { margin-bottom: 20px; }
.plan-name { color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.plan-price { font-size: .9rem; color: #aaa; line-height: 1; margin-bottom: 6px; }
.plan-price span { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -2px; }
.plan-price small { font-size: .82rem; color: var(--muted); }
.plan-desc { font-size: .8rem; color: var(--muted); }

.plan-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .87rem; }
.plan-features li i { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; }
.plan-features li:not(.disabled) i { background: rgba(6,214,160,.15); color: #06d6a0; }
.plan-features li.disabled { color: var(--muted); }
.plan-features li.disabled i { background: rgba(255,255,255,.05); color: #444; }

.plan-total {
  font-size: .75rem; color: var(--muted); margin-bottom: 18px;
  padding: 10px 16px; background: rgba(255,255,255,.04);
  border-radius: 8px; border: 1px solid var(--border);
  text-align: center; letter-spacing: .3px;
}

.btn-plan {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .88rem;
  background: rgba(255,255,255,.07); color: #fff; border: 1px solid var(--border);
  transition: background .2s, transform .2s;
  margin: 0 28px;
}
.btn-plan:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-plan-featured {
  background: linear-gradient(135deg, var(--accent), #c0000f);
  border-color: transparent; box-shadow: 0 4px 24px rgba(229,9,20,.45);
}
.btn-plan-featured:hover { opacity: .9; box-shadow: 0 8px 32px rgba(229,9,20,.6); }
.btn-plan-anual {
  background: linear-gradient(135deg, #00b4d8, #06d6a0);
  border-color: transparent; color: #000; box-shadow: 0 4px 24px rgba(0,180,216,.3);
}
.btn-plan-anual:hover { opacity: .9; box-shadow: 0 8px 32px rgba(0,180,216,.5); }

/* Plan Glow */
.plan-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PLAN TOGGLE ── */
.plan-toggle-wrapper {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 12px; padding: 5px; gap: 4px;
  margin-bottom: 48px;
}
.plan-toggle-btn {
  background: transparent; border: none; color: rgba(255,255,255,.5);
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 600;
  padding: 10px 22px; border-radius: 9px; cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.plan-toggle-btn:hover { color: #fff; }
.plan-toggle-btn.active {
  background: rgba(255,255,255,.1); color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.toggle-badge {
  background: rgba(229,9,20,.25); color: #ff6b6b;
  font-size: .65rem; font-weight: 700; padding: 2px 7px;
  border-radius: 50px; letter-spacing: .5px;
}
.toggle-badge.best {
  background: rgba(0,180,216,.2); color: #00d4ff;
}

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

/* Card oculto/visível via toggle */
.plan-card { display: none; }
.plan-card.plan-visible {
  display: flex;
  animation: planFadeIn .35s ease forwards;
}
@keyframes planFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Quando só 1 card visível, centraliza */
.plans-grid:has(.plan-card.plan-visible:only-child) {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px;
}
.feature-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 22px; text-align: center;
  transition: transform .3s, border-color .3s;
}
.feature-item:hover { transform: translateY(-4px); border-color: rgba(229,9,20,.3); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(229,9,20,.2), rgba(255,107,53,.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem; color: var(--accent);
}
.feature-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT ── */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start;
}

/* CTA Principal WhatsApp */
.contact-cta-main {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, rgba(37,211,102,.12), rgba(37,211,102,.05));
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 18px; padding: 24px 22px;
  text-decoration: none; color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  margin-bottom: 28px;
}
.contact-cta-main:hover {
  transform: translateY(-4px);
  border-color: rgba(37,211,102,.6);
  box-shadow: 0 16px 48px rgba(37,211,102,.15);
}
.contact-cta-glow {
  position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-icon {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #25d366;
}
.contact-cta-text { flex: 1; }
.contact-cta-label {
  display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #25d366; margin-bottom: 4px;
}
.contact-cta-text strong {
  display: block; font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 3px;
}
.contact-cta-number { font-size: .82rem; color: rgba(255,255,255,.5); }
.contact-cta-arrow {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.2);
  display: flex; align-items: center; justify-content: center;
  color: #25d366; font-size: .85rem;
  transition: background .2s, transform .2s;
}
.contact-cta-main:hover .contact-cta-arrow { background: rgba(37,211,102,.25); transform: translateX(3px); }

/* Redes Sociais */
.contact-socials-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted); margin-bottom: 12px;
}
.contact-socials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.contact-social-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 14px;
  text-decoration: none; color: var(--text);
  transition: transform .25s, border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.contact-social-card:hover { transform: translateY(-3px); }
.insta-card:hover { border-color: rgba(225,48,108,.4); background: rgba(225,48,108,.06); }
.tiktok-card:hover { border-color: rgba(0,242,234,.3); background: rgba(0,242,234,.05); }
.csc-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.insta-card .csc-icon { background: rgba(225,48,108,.15); color: #e1306c; }
.tiktok-card .csc-icon { background: rgba(0,242,234,.1); color: #00f2ea; }
.csc-info { flex: 1; min-width: 0; }
.csc-info strong { display: block; font-size: .85rem; font-weight: 700; color: #fff; }
.csc-info span { font-size: .72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.csc-ext { font-size: .65rem; color: var(--muted); flex-shrink: 0; }

/* Horário */
.contact-hours {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-size: .8rem; color: var(--muted);
}
.contact-hours i { color: var(--accent); flex-shrink: 0; }
.contact-hours strong { color: #fff; }

/* Formulário */
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.form-header { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.form-header-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(229,9,20,.15); border: 1px solid rgba(229,9,20,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent);
}
.form-title { font-size: 1rem; font-weight: 800; color: #fff; }
.form-subtitle { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .3px; }
.form-optional { color: var(--muted); font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px; color: #fff;
  font-family: 'Outfit', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s, background .2s; width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(229,9,20,.5); background: rgba(229,9,20,.04);
}
.contact-form select option { background: #1a1a2e; }
.contact-form textarea { resize: vertical; min-height: 90px; }
.btn-full { width: 100%; justify-content: center; }
.form-note { font-size: .73rem; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── FOOTER ── */
.footer {
  background: #050508; padding: 40px 5%; text-align: center;
  border-top: 1px solid var(--border);
}
.footer .logo { font-size: 1.4rem; font-weight: 900; margin-bottom: 16px; display: block; }
.footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; text-decoration: none;
  transition: color .2s, border-color .2s;
}
.footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.footer p { color: var(--muted); font-size: .8rem; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); animation: none; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── PLATFORMS CAROUSEL ── */
.platforms-section {
  background: var(--bg2);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.platforms-label {
  text-align: center;
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 28px;
}
.platforms-track-wrapper {
  position: relative;
  overflow: hidden;
}
.platforms-track-wrapper::before,
.platforms-track-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.platforms-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.platforms-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.platforms-track {
  display: flex; align-items: center; gap: 12px;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
}
.platforms-track:hover { animation-play-state: paused; }
.plat-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  height: 52px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .25s;
}
.plat-item:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  transform: scale(1.05);
}
.plat-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  transition: color .25s;
}
.plat-item:hover span { color: rgba(255,255,255,.95); }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── REVEAL ANIMATION ── */
.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.revealed { opacity: 1 !important; transform: translateY(0) !important; }

/* ══════════════════════════════════
   RESPONSIVE — mobile-first fixes
   ══════════════════════════════════ */

/* Tablet largo */
@media (max-width: 1024px) {
  /* Planos */
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .plan-toggle-wrapper { flex-wrap: wrap; justify-content: center; }

  /* Devices */
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .devices-header-right { width: 100%; justify-content: center; }
}

/* Tablet / mobile grande */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: inline-flex; }

  /* Hero */
  .hero-inner {
    flex-direction: column; text-align: center;
    padding: 100px 5% 60px; gap: 40px;
  }
  .hero-content { max-width: 100%; flex-shrink: unset; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin: 0 auto; width: 100%; justify-content: center; }
  .hero-visual { display: none; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-sub { max-width: 100%; }

  /* Devices */
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .devices-header-right { width: 100%; justify-content: center; }
  .devices-footer-banner { flex-direction: column; text-align: center; gap: 8px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Hero */
  .hero-inner { padding: 90px 4% 52px; gap: 32px; }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3rem); letter-spacing: -1.5px; }
  .hero-sub { font-size: .95rem; }
  .hero-badge { font-size: .7rem; padding: 7px 13px; gap: 7px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-stats {
    width: 100%; display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 14px 8px; gap: 0;
  }
  .stat { padding: 0 6px; }
  .stat strong { font-size: 1.1rem; }
  .stat span { font-size: .6rem; }
  .stat-divider { display: none; }

  /* Sections */
  .section { padding: 52px 0; }
  .container { padding: 0 4%; }
  .section h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: .88rem; margin-bottom: 32px; }

  /* Platforms */
  .platforms-section { padding: 24px 0; }
  .platforms-label { font-size: .65rem; margin-bottom: 18px; }

  /* Devices */
  .devices-grid { grid-template-columns: 1fr; gap: 10px; }
  .device-card { padding: 16px 14px; gap: 14px; }
  .device-icon-wrap { width: 46px; height: 46px; font-size: 1.25rem; border-radius: 12px; }
  .device-info h3 { font-size: .92rem; }
  .device-info p { font-size: .76rem; }
  .devices-header-right { padding: 12px 8px; }
  .devices-stat { padding: 0 10px; }
  .devices-stat strong { font-size: 1.1rem; }
  .devices-stat span { font-size: .6rem; }

  /* Plans */
  .plan-toggle-wrapper { width: 100%; }
  .plan-toggle-btn { flex: 1; justify-content: center; padding: 10px 8px; font-size: .8rem; }
  .plans-grid { max-width: 100%; }
  .plan-card > *:not(.plan-top-bar):not(.plan-glow) { padding-left: 20px; padding-right: 20px; }
  .plan-card > .plan-features { padding-left: 20px; padding-right: 20px; }
  .plan-icon-wrap { margin: 22px 0 16px 20px; width: 48px; height: 48px; font-size: 1.3rem; }
  .plan-price span { font-size: 2.5rem; }
  .btn-plan { margin: 0 20px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-item { padding: 22px 18px; }

  /* Contact */
  .contact-cta-main { padding: 18px 16px; gap: 14px; }
  .contact-cta-icon { width: 50px; height: 50px; font-size: 1.5rem; }
  .contact-cta-text strong { font-size: 1rem; }
  .contact-socials-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; gap: 14px; }

  /* Footer */
  .footer { padding: 32px 4%; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* Mobile pequeno */
@media (max-width: 380px) {
  .hero-content h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .stat-divider { display: none; }
  .stat { padding: 8px 4px; }
  .plan-toggle-btn { font-size: .75rem; padding: 9px 6px; }
  .toggle-badge { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-socials-grid { grid-template-columns: 1fr; }
}
