:root {
  --bg: #030305;
  --bg-soft: #0a0a0f;
  --bg-card: #101016;
  --bg-card-2: #18181f;
  --border: rgba(255, 255, 255, 0.06);
  --text: #f0f0f5;
  --text-muted: #6b6b78;
  --accent: #FF0066;
  --accent-2: #FF6600;
  --accent-glow: rgba(255, 0, 102, 0.5);
  --gradient: linear-gradient(135deg, #FF0066, #FF6600);
  --gradient-bar: linear-gradient(90deg, #FF6600, #FF0066, #6666FF, #009933);
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-card: 0 4px 30px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 80px rgba(255,0,102,0.12);
  --max: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::selection { background: rgba(255,0,102,0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.025;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes cityFadeIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes citySlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 10px transparent; }
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.15); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes priceIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes barGrow {
  from { width: 0; }
}

.btn:active { transform: scale(0.95) !important; }
.city-tag:active { transform: scale(0.93); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CITY MODAL ===== */
.city-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,3,5,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}
.city-modal.hidden { opacity: 0; pointer-events: none; }

.city-modal-content {
  width: 92%;
  max-width: 460px;
  max-height: 78vh;
  background: linear-gradient(180deg, rgba(16,16,22,0.97), rgba(10,10,15,0.99));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-shadow: 0 48px 120px rgba(0,0,0,0.85), 0 0 100px rgba(255,0,102,0.08);
  animation: modalIn 0.5s var(--spring);
}
@keyframes modalIn {
  from { transform: translateY(50px) scale(0.88); opacity: 0; filter: blur(10px); }
  to { transform: none; opacity: 1; filter: blur(0); }
}

.city-modal-header {
  text-align: center;
  padding: 44px 32px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: radial-gradient(ellipse at 50% 0%, rgba(255,0,102,0.1), transparent 70%);
}
.modal-logo { height: 56px; width: auto; margin: 0 auto 20px; filter: drop-shadow(0 4px 16px rgba(255,0,102,0.35)); }
.city-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.city-modal-header p { color: var(--text-muted); font-size: 0.92rem; }

.city-search { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.city-search input {
  width: 100%;
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s var(--ease);
}
.city-search input:focus {
  border-color: var(--accent);
  background: rgba(255,0,102,0.04);
  box-shadow: 0 0 0 4px rgba(255,0,102,0.1), 0 0 30px rgba(255,0,102,0.08);
}
.city-search input::placeholder { color: var(--text-muted); }

.city-list {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 14px;
  min-height: 220px;
}
.city-list::-webkit-scrollbar { width: 4px; }
.city-list::-webkit-scrollbar-track { background: transparent; }
.city-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 10px; }

.city-group-title {
  padding: 12px 16px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.city-item:hover {
  background: rgba(255,0,102,0.06);
  border-color: rgba(255,0,102,0.15);
  transform: translateX(8px);
}
.city-item .ci-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,102,0.12), rgba(255,102,0,0.06));
  border: 1px solid rgba(255,0,102,0.15);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.35s var(--spring);
}
.city-item:hover .ci-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 16px rgba(255,0,102,0.25);
}
.city-item .ci-info { flex: 1; }
.city-item .ci-name { font-weight: 700; font-size: 0.95rem; }
.city-item .ci-region { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.city-item .ci-arrow {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--spring);
}
.city-item:hover .ci-arrow { opacity: 1; transform: translateX(0); }

.city-modal-footer { padding: 16px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.modal-cnpj { color: var(--text-muted); font-size: 0.72rem; opacity: 0.5; }

/* Navbar city selector */
.city-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  max-width: 200px;
  backdrop-filter: blur(10px);
}
.city-selector:hover {
  border-color: var(--accent);
  background: rgba(255,0,102,0.08);
  box-shadow: 0 0 24px rgba(255,0,102,0.15);
}
.city-icon { font-size: 1rem; }
.city-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.city-name.empty { color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 40px var(--accent-glow), 0 0 80px rgba(255,0,102,0.2);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  background: rgba(255,0,102,0.06);
  box-shadow: 0 4px 24px rgba(255,0,102,0.12);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255,0,102,0.06);
  box-shadow: 0 0 24px rgba(255,0,102,0.1);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
}
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(3,3,5,0.9);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-img { height: 42px; width: auto; filter: drop-shadow(0 2px 10px rgba(255,0,102,0.3)); }
.brand-name {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -1.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--accent); background: rgba(255,0,102,0.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.35s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 700px at 70% 10%, rgba(255,0,102,0.16), transparent 50%),
    radial-gradient(700px 600px at 20% 80%, rgba(255,102,0,0.1), transparent 50%),
    radial-gradient(500px 400px at 50% 40%, rgba(102,102,255,0.06), transparent 50%),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 24px 0 28px;
  animation: heroReveal 1s var(--ease) backwards;
}
.hero-content p {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1.12rem;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: heroReveal 1s 0.12s var(--ease) backwards;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; animation: heroReveal 1s 0.24s var(--ease) backwards; }
.hero-stats { animation: heroReveal 1s 0.36s var(--ease) backwards; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,0,102,0.25);
  background: rgba(255,0,102,0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: heroReveal 1s 0s var(--ease) backwards;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s infinite;
}

.hero-stats { display: flex; gap: 44px; }
.stat strong {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; display: block; }

.hero-visual { display: flex; justify-content: center; }
.speed-card {
  width: 100%; max-width: 440px;
  background: linear-gradient(180deg, rgba(16,16,22,0.9), rgba(10,10,15,0.95));
  backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 44px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 100px rgba(255,0,102,0.06);
  animation: heroReveal 1s 0.48s var(--ease) backwards;
}
.speed-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,0,102,0.45), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.speed-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 220%; height: 220%;
  background: radial-gradient(circle at 25% 25%, rgba(255,0,102,0.08), transparent 40%);
  pointer-events: none;
}
.speed-top, .speed-bottom { display: flex; align-items: baseline; justify-content: space-between; }
.speed-label { color: var(--text-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.speed-value { font-size: 2.6rem; font-weight: 900; letter-spacing: -1.5px; }
.speed-value .unit { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }
.speed-card .speed-bottom { margin-top: 30px; }
.speed-bar {
  margin: 22px 0 4px;
  height: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.speed-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 20px;
  transition: width 2s var(--ease);
  box-shadow: 0 0 28px var(--accent-glow);
  animation: barGrow 2s var(--ease) 1.2s both;
}
.powered {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.bolt {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex; justify-content: center;
  padding-top: 10px;
}
.scroll-hint span {
  width: 4px; height: 12px;
  border-radius: 4px;
  background: var(--accent);
  animation: scroll 2.2s infinite;
}

/* ===== STRIP ===== */
.strip {
  background: rgba(16,16,22,0.5);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
  padding: 18px 0;
  backdrop-filter: blur(10px);
}
.strip-track {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.strip-track span {
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

/* ===== SECTION ===== */
.section { padding: 140px 0; }
.section.dark { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-head.left { text-align: left; margin: 0 0 50px; }
.eyebrow {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  text-wrap: balance;
}
.section-head p { color: var(--text-muted); margin-top: 20px; font-size: 1.08rem; line-height: 1.75; }

/* ===== PLANS ===== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
  color: var(--text-muted);
  font-weight: 600;
  user-select: none;
}
.billing-toggle span.active { color: var(--text); }
.billing-toggle em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,0,102,0.3);
  font-weight: 700;
}
.toggle {
  width: 60px; height: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.toggle span {
  position: absolute;
  top: 4px; left: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.4s var(--spring);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.toggle.on { background: rgba(255,0,102,0.15); border-color: rgba(255,0,102,0.3); }
.toggle.on span { transform: translateX(26px); background: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }

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

.plan {
  position: relative;
  background: linear-gradient(180deg, rgba(16,16,22,0.85), rgba(10,10,15,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.45s var(--spring);
  box-shadow: var(--shadow-card);
}
.plan:hover {
  transform: translateY(-12px);
  border-color: rgba(255,0,102,0.35);
  box-shadow: 0 20px 60px rgba(255,0,102,0.12), 0 0 0 1px rgba(255,0,102,0.15);
}
.plan-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 18px; }
.plan h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 24px; letter-spacing: -0.5px; }
.plan-speed { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.plan-speed strong {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-speed span { color: var(--text-muted); font-size: 1rem; font-weight: 600; }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 30px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-price .currency { font-size: 1.4rem; color: var(--text-muted); font-weight: 600; }
.plan-price .price { font-size: 2.6rem; font-weight: 900; letter-spacing: -1px; }
.plan-price .period { color: var(--text-muted); font-size: 0.88rem; }
.plan-price .price-anim { animation: priceIn 0.4s var(--ease); }

.plan-perks { flex: 1; display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.plan-perks li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.plan-perks li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF0066' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.plan.featured {
  background: linear-gradient(180deg, rgba(255,0,102,0.1), rgba(10,10,15,0.95) 45%);
  border-color: rgba(255,0,102,0.45);
  box-shadow: 0 28px 80px rgba(255,0,102,0.18), 0 0 0 1px rgba(255,0,102,0.1);
  scale: 1.05;
}
.plan.featured .ribbon {
  position: absolute;
  top: 0; right: 30px;
  transform: translateY(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 28px var(--accent-glow);
  letter-spacing: 0.5px;
}

.plans-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 44px;
  padding: 22px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ===== GAUGE TEST BUTTON & PHASE ===== */
.gauge-test-btn {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--gradient);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.35s var(--spring);
  box-shadow: 0 4px 24px var(--accent-glow);
  margin: 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.3px;
}
.gauge-test-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 36px var(--accent-glow); }
.gauge-test-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.gauge-test-btn .btn-icon { font-size: 0.85rem; }

.gauge-phase {
  margin: 8px 0 12px;
}
.phase-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  margin-bottom: 8px;
}
.phase-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: var(--gradient);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width 0.3s var(--ease);
}
.phase-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== BRAND STRIPE ===== */
.brand-stripe { display: flex; gap: 8px; justify-content: center; margin: 28px 0 0; }
.brand-stripe span { width: 36px; height: 6px; border-radius: 4px; }
.brand-stripe .s1 { background: #FF6600; }
.brand-stripe .s2 { background: #FF0066; }
.brand-stripe .s3 { background: #6666FF; }
.brand-stripe .s4 { background: #009933; }

/* ===== COBERTURA ===== */
.cities-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.city-tag {
  padding: 14px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--spring);
  backdrop-filter: blur(10px);
}
.city-tag:hover {
  border-color: rgba(255,0,102,0.35);
  background: rgba(255,0,102,0.08);
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(255,0,102,0.12);
}
.city-tag.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 28px var(--accent-glow);
}

.coverage-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cp {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.cp:hover { border-color: rgba(255,0,102,0.2); transform: translateY(-4px); }
.cp em { font-style: normal; font-size: 2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 10px; }
.cp p { color: var(--text-muted); font-size: 0.95rem; }
.cp strong { color: var(--text); }

/* ===== STREAMING ===== */
.playhub-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 600px;
  margin: 0 auto 40px;
}
.ph-logo {
  font-weight: 900;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.ph-text { color: var(--text-muted); font-size: 0.85rem; }

.streaming-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.stream-tab {
  padding: 12px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.stream-tab:hover { border-color: rgba(255,0,102,0.3); color: var(--text); }
.stream-tab.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 20px var(--accent-glow); }

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.stream-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.35s var(--ease);
  animation: streamFadeIn 0.6s var(--ease) backwards;
}
@keyframes streamFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
}
.stream-card:hover {
  border-color: rgba(255,0,102,0.3);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,0,102,0.15), 0 0 0 1px rgba(255,0,102,0.1);
}
.stream-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 60px; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg);
  animation: shineFlash 3s infinite;
  pointer-events: none;
}
.shine::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 70%);
  animation: shinePulse 3s infinite;
  pointer-events: none;
}
@keyframes shineFlash {
  0%, 70% { left: -80%; opacity: 0; }
  85% { left: 120%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}
@keyframes shinePulse {
  0%, 65% { opacity: 0; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}
.stream-card:hover .shine::before {
  animation-duration: 1.5s;
}
.stream-icon { color: #fff; font-size: 0.6rem; font-weight: 800; text-align: center; line-height: 1.2; letter-spacing: 0.5px; text-shadow: 0 0 12px rgba(255,255,255,0.4); }
.stream-info { flex: 1; }
.stream-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.stream-info p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }
.stream-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  animation: badgeGlow 2s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(74,222,128,0); }
  50% { box-shadow: 0 0 12px rgba(74,222,128,0.3); }
}
.stream-badge.free { background: rgba(74,222,128,0.12); color: #4ade80; }
.streaming-note { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 40px; opacity: 0.7; }

/* ===== COMBOS ===== */
.combo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.combo-card {
  background: linear-gradient(180deg, rgba(16,16,22,0.85), rgba(10,10,15,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.4s var(--spring);
  position: relative;
  overflow: hidden;
}
.combo-card::before {
  content: '';
  position: absolute;
  top: -60%; right: -60%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(255,0,102,0.06), transparent 60%);
  pointer-events: none;
}
.combo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,102,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.combo-card.featured {
  background: linear-gradient(180deg, rgba(255,0,102,0.1), rgba(10,10,15,0.95) 40%);
  border-color: rgba(255,0,102,0.4);
  box-shadow: 0 24px 70px rgba(255,0,102,0.15);
}
.combo-card.premium {
  background: linear-gradient(180deg, rgba(255,102,0,0.08), rgba(10,10,15,0.95) 40%);
  border-color: rgba(255,102,0,0.3);
}
.combo-ribbon {
  position: absolute;
  top: 0; right: 28px;
  transform: translateY(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.combo-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.combo-icon { font-size: 2rem; }
.combo-header h3 { font-size: 1.3rem; font-weight: 900; }
.combo-sub { color: var(--text-muted); font-size: 0.85rem; }
.combo-speed { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.combo-speed strong { font-size: 2.4rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.combo-speed span { color: var(--text-muted); font-weight: 600; }
.combo-price { margin-bottom: 24px; }
.combo-price .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.88rem; display: block; margin-bottom: 4px; }
.combo-price .new-price { font-size: 2rem; font-weight: 900; }
.combo-price .new-price .currency { font-size: 1.1rem; color: var(--text-muted); }
.combo-price .period { color: var(--text-muted); font-size: 0.85rem; }
.combo-includes { margin-bottom: 28px; }
.combo-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 12px; }
.combo-includes ul { display: flex; flex-direction: column; gap: 10px; }
.combo-includes li { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.combo-includes .check { color: var(--accent); font-weight: 800; }
.combo-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.combo-custom {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.combo-custom-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.combo-custom-icon { font-size: 2.5rem; }
.combo-custom h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.combo-custom p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== BUILDER ===== */
.builder-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 28px;
}
.step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.step-num {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}
.step-header h3 { font-size: 1.15rem; font-weight: 800; }

.speed-options { display: flex; gap: 16px; }
.speed-opt { flex: 1; cursor: pointer; }
.speed-opt input { display: none; }
.speed-box {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.speed-box strong { font-size: 2rem; font-weight: 900; display: block; }
.speed-box span { color: var(--text-muted); font-weight: 600; }
.speed-price { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--accent); font-weight: 700; }
.speed-opt input:checked + .speed-box {
  border-color: var(--accent);
  background: rgba(255,0,102,0.08);
  box-shadow: 0 0 24px rgba(255,0,102,0.15);
}

.category-block { margin-top: 28px; }
.cat-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: var(--text-muted); }
.app-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.app-card { cursor: pointer; }
.app-card input { display: none; }
.app-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
  position: relative;
}
.app-inner:hover { border-color: rgba(255,0,102,0.3); background: rgba(255,0,102,0.04); }
.app-card input:checked + .app-inner {
  border-color: var(--accent);
  background: rgba(255,0,102,0.1);
  box-shadow: 0 0 20px rgba(255,0,102,0.15);
}
.app-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.app-logo span { color: #fff; font-size: 0.5rem; font-weight: 800; text-align: center; line-height: 1.2; }
.app-name { font-weight: 700; font-size: 0.92rem; }
.app-price-tag { color: var(--accent); font-size: 0.78rem; font-weight: 700; }
.app-check {
  position: absolute;
  top: 8px; right: 10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--spring);
}
.app-card input:checked + .app-inner .app-check { opacity: 1; transform: scale(1); }

.builder-summary {
  background: linear-gradient(180deg, rgba(16,16,22,0.9), rgba(10,10,15,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.builder-summary h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 24px; }
.builder-selected-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.builder-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,0,102,0.06);
  font-size: 0.9rem;
}
.builder-selected-item .remove { color: var(--accent); cursor: pointer; font-weight: 800; }
.builder-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.builder-total .label { color: var(--text-muted); font-size: 0.92rem; }
.builder-total .price {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RECURSOS / FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: linear-gradient(180deg, rgba(16,16,22,0.85), rgba(10,10,15,0.95));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: all 0.4s var(--spring);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(255,0,102,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,0,102,0.12), rgba(255,102,0,0.06));
  border: 1px solid rgba(255,0,102,0.15);
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ===== NETWORK ===== */
.network { background: linear-gradient(180deg, var(--bg), var(--bg-soft)); position: relative; overflow: hidden; }
.network::before {
  content: '';
  position: absolute;
  top: -250px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,0,102,0.08), transparent 65%);
  pointer-events: none;
}
.network .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.network-info h3 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 22px; }
.network-info p { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.network-list { display: flex; flex-direction: column; gap: 16px; }
.network-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.35s var(--ease);
}
.network-item:hover { background: rgba(255,0,102,0.04); border-color: rgba(255,0,102,0.15); transform: translateX(8px); }
.network-item-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,102,0.12), rgba(255,102,0,0.06));
  font-size: 1.3rem;
  flex-shrink: 0;
}
.network-item-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.network-item-text span { color: var(--text-muted); font-size: 0.82rem; }

.network-visual { display: flex; justify-content: center; align-items: center; }
.network-map {
  width: 100%; max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,0,102,0.06), rgba(255,102,0,0.03));
  border: 1px solid rgba(255,255,255,0.05);
  display: grid; place-items: center;
  position: relative;
  animation: float 7s ease-in-out infinite;
}
.network-map::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,0,102,0.35), transparent, rgba(255,102,0,0.25), transparent);
  animation: spin 10s linear infinite;
  opacity: 0.45;
}
.network-map-icon {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,0,102,0.18), rgba(255,102,0,0.12));
  display: grid; place-items: center;
  font-size: 4rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(255,0,102,0.2);
}

/* ===== DEPOIMENTOS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all 0.35s var(--ease);
}
.testimonial:hover { border-color: rgba(255,0,102,0.15); transform: translateY(-6px); }
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 18px; }
.testimonial p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.testimonial-info strong { display: block; font-size: 0.95rem; }
.testimonial-info span { color: var(--text-muted); font-size: 0.82rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(255,0,102,0.15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  transition: all 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-question .arrow { font-size: 1.3rem; transition: transform 0.4s var(--spring); color: var(--accent); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.5s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ===== CTA ===== */
.cta { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,0,102,0.12), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(255,0,102,0.14), rgba(255,102,0,0.08));
  border: 1px solid rgba(255,0,102,0.25);
  border-radius: 32px;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,0,102,0.18), transparent 65%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; position: relative; }
.cta-inner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.75; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== CONTATO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; line-height: 1.75; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.contact-method:hover { border-color: rgba(255,0,102,0.2); transform: translateX(8px); }
.contact-method-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,102,0.12), rgba(255,102,0,0.06));
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-method-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-method-text span { color: var(--text-muted); font-size: 0.85rem; }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,0,102,0.1), 0 0 30px rgba(255,0,102,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b78' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.04); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; transition: all 0.3s; }
.footer-links a:hover { color: var(--accent); transform: translateX(6px); display: inline-block; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
  font-size: 1.1rem;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(255,0,102,0.1); transform: translateY(-4px); }

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: grid; place-items: center;
  font-size: 2rem;
  color: #fff;
  z-index: 900;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: all 0.35s var(--spring);
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
.wa-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.5);
  animation: waRingPulse 2s ease-out infinite;
  pointer-events: none;
}
.wa-ring::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.25);
  animation: waRingPulse 2s 0.5s ease-out infinite;
}
@keyframes waRingPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SOCIAL PROOF STRIP ===== */
.social-proof-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(255,0,102,0.06), rgba(255,102,0,0.04));
  border-top: 1px solid rgba(255,0,102,0.1);
  border-bottom: 1px solid rgba(255,0,102,0.1);
  position: relative;
  overflow: hidden;
}
.social-proof-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,0,102,0.05), transparent 70%);
  pointer-events: none;
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 56px;
  text-align: center;
}
.sp-num {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sp-plus {
  font-size: 1.6rem;
  font-weight: 900;
}
.sp-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sp-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS REDESIGN ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(16,16,22,0.9), rgba(10,10,15,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.4s var(--spring);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,0,102,0.25);
  box-shadow: 0 24px 60px rgba(255,0,102,0.1), 0 0 0 1px rgba(255,0,102,0.08);
}
.featured-testimonial {
  background: linear-gradient(180deg, rgba(255,0,102,0.09), rgba(10,10,15,0.97) 50%);
  border-color: rgba(255,0,102,0.35);
  box-shadow: 0 20px 60px rgba(255,0,102,0.12);
  scale: 1.03;
}
.tc-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 6px rgba(251,191,36,0.4));
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.tc-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255,0,102,0.3);
}
.tc-info strong { display: block; font-size: 0.95rem; font-weight: 800; }
.tc-info span { color: var(--text-muted); font-size: 0.8rem; }

/* ===== FOOTER HOURS ===== */
.footer-hours {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ===== FORM INPUT VALID STATE ===== */
.contact-form input:valid:not(:placeholder-shown) {
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.03);
}
.contact-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(255,0,102,0.4);
}



/* ===== PLAN FEATURED - Animated Border ===== */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes featuredBorderSpin {
  to { --border-angle: 360deg; }
}
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 28px 80px rgba(255,0,102,0.18), 0 0 0 1px rgba(255,0,102,0.1); }
  50% { box-shadow: 0 40px 100px rgba(255,0,102,0.3), 0 0 80px rgba(255,102,0,0.15), 0 0 0 1px rgba(255,102,0,0.4); }
}
.plan.featured {
  isolation: isolate;
  animation: featuredGlow 3s ease-in-out infinite;
}
.plan.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 3px);
  background: conic-gradient(from var(--border-angle), #FF0066, #FF6600, transparent 40%, transparent 60%, #6666FF, #FF0066);
  z-index: -1;
  animation: featuredBorderSpin 4s linear infinite;
}

/* ===== PLAN SPEED BAR ===== */
.plan-speed-bar {
  height: 5px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin: -10px 0 22px;
}
.plan-speed-fill {
  height: 100%;
  width: 0;
  border-radius: 5px;
  background: var(--gradient);
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}
.plan-speed-fill.animated { width: var(--w); }

/* ===== NETWORK LAYOUT REDESIGN ===== */
.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.network-left h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 18px 0 20px;
}
.network-left p { color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.network-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.net-badge {
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,0,102,0.07);
  border: 1px solid rgba(255,0,102,0.18);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}
.net-badge:hover { background: rgba(255,0,102,0.14); transform: translateY(-2px); }
.network-right { display: flex; flex-direction: column; gap: 28px; }
.net-bar-item { }
.net-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.net-bar-label span { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }
.net-bar-label strong { font-size: 1.05rem; font-weight: 900; }
.net-bar-num {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.net-bar-track {
  height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.net-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: var(--gradient);
  box-shadow: 0 0 20px rgba(255,0,102,0.35);
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}
.net-bar-fill.animated { width: var(--bar-w, 0%); }

/* ===== HERO CANVAS PARTICLES ===== */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 1; }

/* ===== RESPONSIVE NETWORK ===== */
@media (max-width: 960px) {
  .network-layout { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
}


@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
  .speed-card { max-width: 380px; margin: 0 auto; }
  .plans-grid, .features-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .plan.featured { scale: 1; }
  .coverage-points { grid-template-columns: 1fr; }
  .network .container { grid-template-columns: 1fr; }
  .network-visual { order: -1; }
  .network-map { max-width: 320px; margin: 0 auto; }
  .combo-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed;
    top: 80px; right: 0;
    flex-direction: column;
    background: rgba(3,3,5,0.97);
    backdrop-filter: blur(32px) saturate(1.5);
    width: min(340px, 90vw);
    padding: 28px;
    gap: 6px;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-bottom-left-radius: 28px;
    box-shadow: -28px 28px 100px rgba(0,0,0,0.7);
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: flex; padding: 10px; }
  .plans-grid, .features-grid, .testimonials, .apps-grid { grid-template-columns: 1fr; }
  .streaming-grid { grid-template-columns: 1fr; }
  .speed-options { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero { padding: 130px 0 80px; min-height: auto; }
  .section { padding: 90px 0; }
  .section-head { margin-bottom: 50px; }
  .plan { padding: 32px 26px; }
  .cta-inner { padding: 56px 30px; border-radius: 24px; }
  .builder-step { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .combo-custom-inner { flex-direction: column; text-align: center; }
  .combo-custom .btn { width: 100%; }
  .city-selector { max-width: 130px; font-size: 0.78rem; padding: 8px 12px; }
/* ===== CORREÇÃO DE ALINHAMENTO E CENTRALIZAÇÃO ===== */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.combo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.builder-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px;
  margin: 0 auto 28px;
  max-width: 1000px;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.speed-options {
  display: flex;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.builder-summary {
  background: linear-gradient(180deg, rgba(16,16,24,0.92), rgba(10,10,15,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.builder-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.playhub-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== VELOCÍMETRO SVG FUTURISTA NEON ===== */
.speed-gauge-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, rgba(16,16,24,0.92), rgba(8,8,14,0.98));
  backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 32px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 80px rgba(255,0,102,0.1);
  animation: heroReveal 1s 0.48s var(--ease) backwards;
  overflow: hidden;
  margin: 0 auto;
}
.speed-gauge-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

.gauge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #00FFCC;
}
.pulse-dot-green {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00FFCC;
  box-shadow: 0 0 12px #00FFCC;
  animation: pulse 1.8s infinite;
}
.ping-badge {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ping-badge strong { color: #00FFCC; }

.gauge-wrapper {
  position: relative;
  width: 100%;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gauge-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  overflow: visible;
}
#gaugeArc {
  transition: stroke-dashoffset 2.2s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.gauge-center {
  position: absolute;
  bottom: 12px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.gauge-center .speed-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.gauge-center .speed-unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.gauge-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 14px 16px;
  margin-top: 14px;
}
.g-stat { text-align: center; }
.g-stat span { font-size: 0.68rem; color: var(--text-muted); display: block; letter-spacing: 1px; font-weight: 700; }
.g-stat strong { font-size: 1.05rem; font-weight: 800; color: #fff; margin-top: 2px; display: block; }
.g-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }

.powered-badge {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cat-tab:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.cat-tab.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== UNIFIED APP GRID & GLASS CARDS ===== */
.app-grid-unified {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.app-card {
  position: relative;
  cursor: pointer;
}
.app-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.app-card .app-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s var(--spring);
  backdrop-filter: blur(16px);
}
.app-card:hover .app-inner {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 0, 102, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.app-card input[type="checkbox"]:checked + .app-inner {
  background: linear-gradient(135deg, rgba(255, 0, 102, 0.12), rgba(255, 102, 0, 0.08));
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(255,0,102,0.25);
}

.app-brand-badge {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
}

.app-details { flex: 1; min-width: 0; }
.app-details h4 { font-size: 0.95rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-details p { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.app-price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  white-space: nowrap;
}
.app-price-tag.free {
  background: rgba(0,255,204,0.12);
  color: #00FFCC;
  border: 1px solid rgba(0,255,204,0.25);
}

.app-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.3s var(--spring);
  flex-shrink: 0;
}
.app-card input[type="checkbox"]:checked + .app-inner .app-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 10px var(--accent-glow);
}

.tag-popular {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== STICKY BUILDER BAR ===== */
.sticky-builder-bar {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(720px, 92vw);
  background: rgba(16, 16, 24, 0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 0, 102, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255,0,102,0.2);
  transition: transform 0.4s var(--spring);
}
.sticky-builder-bar.visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sticky-info { display: flex; flex-direction: column; }
.sticky-title { font-size: 0.85rem; color: var(--text-muted); }
.sticky-title strong { color: #fff; }
.sticky-price { font-size: 1.15rem; font-weight: 900; color: var(--accent); }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; border-radius: 30px; }

/* TOAST NOTIFICATION */
.toast-notif {
  position: fixed;
  top: 24px; right: 24px;
  background: rgba(16, 24, 16, 0.95);
  border: 1px solid #00FFCC;
  color: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  z-index: 99999;
  box-shadow: 0 10px 40px rgba(0,255,204,0.3);
  font-weight: 600;
  font-size: 0.9rem;
  animation: citySlideIn 0.4s ease;
}

/* ===== ALTERNADOR PLANOS VS COMBOS ===== */
.plan-type-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.type-btn {
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s var(--spring);
}
.type-btn:hover {
  color: #fff;
  border-color: rgba(255, 0, 102, 0.3);
  background: rgba(255, 0, 102, 0.06);
}
.type-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 24px var(--accent-glow);
}