/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #eef2f7;
  color: #1a2340;
  line-height: 1.6;
}

/* ===== VARIÁVEIS ===== */
:root {
  --blue-dark:   #0a1f5c;
  --blue-main:   #1a4bbd;
  --blue-mid:    #2563eb;
  --blue-light:  #3b82f6;
  --blue-pale:   #dbeafe;
  --green-main:  #16a34a;
  --green-light: #22c55e;
  --green-pale:  #dcfce7;
  --bg:          #eef2f7;
  --bg-card:     #f8fafd;
  --text-dark:   #0f172a;
  --text-mid:    #334155;
  --text-soft:   #64748b;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(26,75,189,0.10);
  --shadow-lg:   0 8px 40px rgba(26,75,189,0.16);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.green { background: var(--green-pale); color: var(--green-main); }

h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
p.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 580px;
}
.badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}
.hidden { display: none !important; }

/* ===== TOPBAR ===== */
#topbar {
  background: var(--blue-dark);
  color: #a8c4ff;
  font-size: 0.78rem;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
#topbar a { color: #7dd3fc; text-decoration: none; }
#topbar span { margin: 0 12px; }

/* ===== NAV ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37,99,235,0.10);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: white; letter-spacing: -1px;
}
.nav-logo .logo-text {
  font-weight: 800; font-size: 1.2rem;
  color: var(--blue-dark); line-height: 1.1;
}
.nav-logo .logo-text span { color: var(--green-main); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-main); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: white;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.45); }

.btn-green {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: white;
  box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,0.45); }

.btn-outline {
  background: transparent;
  color: var(--blue-main);
  border: 2px solid var(--blue-main);
}
.btn-outline:hover { background: var(--blue-pale); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }

/* ===== MOBILE NAV ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--blue-dark); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--blue-pale);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

/* ===== HERO ===== */
#hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a8f 50%, #1a4bbd 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(59,130,246,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(22,163,74,0.12) 0%, transparent 70%);
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #a8d4ff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-tag::before { content: '●'; color: var(--green-light); font-size: 0.6rem; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--green-light); }
.hero-sub {
  font-size: 1.1rem;
  color: #94b4e0;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat span { font-size: 0.82rem; color: #94b4e0; margin-top: 2px; display: block; }

.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateX(6px); }
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-icon.blue  { background: rgba(59,130,246,0.25); }
.hero-card-icon.green { background: rgba(34,197,94,0.2); }
.hero-card-icon.purple{ background: rgba(139,92,246,0.2); }
.hero-card h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 2px; }
.hero-card p  { font-size: 0.8rem; color: #94b4e0; }
.hero-card .price { font-size: 1.1rem; font-weight: 800; color: var(--green-light); margin-left: auto; }

/* ===== TRUST BAR ===== */
#trust {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item .icon {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== SOBRE ===== */
#sobre { padding: 90px 24px; background: var(--bg); }
.sobre-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-main-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.sobre-main-card::after {
  content: '🌐';
  position: absolute;
  right: -10px; bottom: -10px;
  font-size: 8rem;
  opacity: 0.08;
}
.sobre-main-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.sobre-main-card p  { color: #a8c4ff; font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }
.sobre-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sobre-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.sobre-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--green-light); }
.sobre-stat span   { font-size: 0.75rem; color: #94b4e0; }
.sobre-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.sobre-float .dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%    { opacity:0.5; transform:scale(1.5); }
}
.sobre-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.sobre-text p { color: var(--text-soft); margin-bottom: 14px; font-size: 0.97rem; line-height: 1.75; }
.cities-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.city-chip {
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
}
.city-chip::before { content: '📍'; font-size: 0.7rem; }

/* ===== SELETOR DE PERFIL ===== */
#perfil { padding: 80px 24px; background: white; }
.perfil-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.perfil-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 14px;
}
.perfil-inner p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 40px; }
.perfil-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.perfil-card {
  cursor: pointer;
  border: 2.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
  background: var(--bg-card);
  user-select: none;
}
.perfil-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.perfil-card .p-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  transition: transform 0.3s;
}
.perfil-card:hover .p-icon { transform: scale(1.1); }
.perfil-card.pf .p-icon { background: linear-gradient(135deg, var(--blue-pale), #c7d9ff); }
.perfil-card.pj .p-icon { background: linear-gradient(135deg, var(--green-pale), #bbf7d0); }
.perfil-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.perfil-card p  { font-size: 0.88rem; color: var(--text-soft); }
.perfil-card .p-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.2s;
}
.perfil-card.pf .p-cta { background: var(--blue-pale); color: var(--blue-main); }
.perfil-card.pj .p-cta { background: var(--green-pale); color: var(--green-main); }
.perfil-card:hover .p-cta { transform: translateY(-2px); }

/* ===== SEÇÕES DE PLANOS ===== */
#planos-pf { padding: 80px 24px 100px; background: var(--bg); }
#planos-pj { padding: 80px 24px 100px; background: #f0fdf4; }

.planos-header {
  max-width: 1180px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.planos-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 20px;
}
.planos-back:hover { color: var(--blue-main); border-color: var(--blue-light); }

.planos-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ptab {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: white;
  color: var(--text-mid);
}
.ptab.active { background: var(--blue-main); color: white; border-color: var(--blue-main); }
.ptab.active.green { background: var(--green-main); border-color: var(--green-main); }

.plans-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.plan-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid #e2e8f0;
  position: relative;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--blue-main);
  background: linear-gradient(180deg, #f0f6ff 0%, white 40%);
}
.plan-card.featured.green-feat {
  border-color: var(--green-main);
  background: linear-gradient(180deg, #f0fdf4 0%, white 40%);
}
.feat-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.feat-badge.green { background: linear-gradient(135deg, var(--green-main), var(--green-light)); }

.plan-speed {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-speed span { font-size: 1rem; font-weight: 600; color: var(--text-soft); }
.plan-type { font-size: 0.8rem; color: var(--text-soft); font-weight: 500; margin-bottom: 20px; }
.plan-price .from { font-size: 0.8rem; color: var(--text-soft); }
.plan-price strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  display: block;
  line-height: 1.1;
}
.plan-price .per { font-size: 0.8rem; color: var(--text-soft); }
.plan-divider { border: none; border-top: 1px solid #f1f5f9; margin: 18px 0; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  color: var(--green-main);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-btn { margin-top: auto; }
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--blue-pale);
  color: var(--blue-main);
  border: 2px solid transparent;
}
.btn-plan:hover { background: var(--blue-main); color: white; }
.btn-plan.highlighted { background: var(--blue-main); color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.btn-plan.highlighted:hover { background: var(--blue-dark); }
.btn-plan.green-btn { background: var(--green-pale); color: var(--green-main); }
.btn-plan.green-btn:hover { background: var(--green-main); color: white; }
.btn-plan.green-highlighted { background: var(--green-main); color: white; box-shadow: 0 4px 14px rgba(22,163,74,0.3); }
.btn-plan.green-highlighted:hover { background: #15803d; }

/* ===== STREAMING ===== */
#streaming { padding: 80px 24px; background: white; }
.streaming-inner { max-width: 1180px; margin: 0 auto; }
.combo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.combo-card {
  border-radius: 20px;
  padding: 32px 28px;
  border: 2px solid #e2e8f0;
  transition: all 0.25s;
  position: relative;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.combo-card.advanced { border-color: var(--blue-light); background: #f8fbff; }
.combo-card.premium  { border-color: var(--blue-dark); background: linear-gradient(180deg, #eef4ff 0%, white 60%); }
.combo-level {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.combo-level.s { color: var(--text-soft); }
.combo-level.a { color: var(--blue-main); }
.combo-level.p { color: var(--blue-dark); }
.combo-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; color: var(--text-dark); }
.combo-from    { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 4px; }
.combo-price   { font-size: 2.1rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.combo-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }
.combo-apps { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.app-chip {
  background: var(--bg);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ===== MÓVEL ===== */
#movel { padding: 80px 24px; background: var(--bg); }
.movel-inner { max-width: 1180px; margin: 0 auto; }
.movel-toggle {
  display: flex;
  background: white;
  border-radius: 14px;
  padding: 6px;
  gap: 4px;
  width: fit-content;
  margin: 30px 0;
  box-shadow: var(--shadow);
}
.mtoggle {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-soft);
  border: none;
  background: transparent;
}
.mtoggle.active      { background: var(--blue-main); color: white; }
.mtoggle.active.vivo { background: var(--green-main); }
.movel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.movel-card {
  background: white;
  border-radius: 14px;
  padding: 22px 20px;
  border: 2px solid #e2e8f0;
  transition: all 0.25s;
}
.movel-card:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.movel-gb { font-size: 2rem; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.movel-gb span { font-size: 0.9rem; font-weight: 500; color: var(--text-soft); }
.movel-bonus { font-size: 0.75rem; color: var(--green-main); font-weight: 600; margin-bottom: 12px; }
.movel-price { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); margin-bottom: 8px; }
.movel-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-soft); }
.movel-features { font-size: 0.78rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 14px; }

/* ===== COMBOS INTERNET + MÓVEL ===== */
#combos-movel { padding: 70px 24px; background: white; }
.combos-inner { max-width: 1180px; margin: 0 auto; }
.combos-toggle {
  display: flex;
  background: var(--bg);
  border-radius: 14px;
  padding: 6px;
  gap: 4px;
  width: fit-content;
  margin: 28px 0;
}
.ctoggle {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-soft);
  transition: all 0.2s;
}
.ctoggle.active { background: var(--blue-main); color: white; }
.ctoggle.active.green { background: var(--green-main); }
.combos-table {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.combo-row-card {
  background: var(--bg-card);
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  transition: all 0.2s;
}
.combo-row-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); }
.combo-row-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.combo-row-card .combo-row-price { font-size: 1.6rem; font-weight: 900; color: var(--text-dark); }
.combo-row-card .combo-row-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-soft); }
.combo-row-card p { font-size: 0.8rem; color: var(--text-soft); margin-top: 6px; }

/* ===== TELEFONIA FIXA ===== */
#fixo { padding: 70px 24px; background: var(--bg); }
.fixo-inner { max-width: 1180px; margin: 0 auto; }
.fixo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.fixo-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid #e2e8f0;
  background: white;
  transition: all 0.25s;
}
.fixo-card:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.fixo-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-mid); }
.fixo-card .f-price { font-size: 2rem; font-weight: 900; color: var(--text-dark); }
.fixo-card .f-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }
.fixo-card p { font-size: 0.85rem; color: var(--text-soft); margin-top: 8px; }
.fixo-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.fixo-tag.pf { background: var(--blue-pale); color: var(--blue-main); }
.fixo-tag.pj { background: var(--green-pale); color: var(--green-main); }

/* ===== DIFERENCIAIS ===== */
#diferenciais { padding: 90px 24px; background: white; }
.diferenciais-inner { max-width: 1180px; margin: 0 auto; }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.dif-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s;
}
.dif-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-light); }
.dif-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.dif-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.dif-card p  { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

/* ===== SOCIAL ===== */
#social {
  padding: 70px 24px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a8f 100%);
  position: relative;
  overflow: hidden;
}
#social::before {
  content: '💚';
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.06;
}
.social-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.social-inner .section-tag { background: rgba(34,197,94,0.2); color: var(--green-light); }
.social-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: white; margin-bottom: 16px; }
.social-inner p   { color: #94b4e0; font-size: 1rem; line-height: 1.75; max-width: none; }

/* ===== DEPOIMENTOS ===== */
#depoimentos { padding: 80px 24px; background: var(--bg); }
.dep-inner { max-width: 1180px; margin: 0 auto; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.dep-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e2e8f0;
  position: relative;
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 4rem;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  line-height: 1;
}
.dep-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.dep-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.dep-text.placeholder { color: #cbd5e1; font-style: normal; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 0.95rem;
}
.dep-avatar.green { background: linear-gradient(135deg, var(--green-light), var(--green-main)); }
.dep-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.dep-role { font-size: 0.78rem; color: var(--text-soft); }
.dep-placeholder-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ===== OBSERVAÇÕES ===== */
#obs { padding: 50px 24px; background: white; }
.obs-inner { max-width: 860px; margin: 0 auto; }
.obs-inner h3 { font-size: 1rem; font-weight: 700; color: var(--text-mid); margin-bottom: 14px; }
.obs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.obs-list li {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.obs-list li::before {
  content: '*';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 800;
}

/* ===== CTA ===== */
#cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--blue-main) 0%, var(--blue-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; left: -150px;
}
#cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(34,197,94,0.08);
  bottom: -100px; right: -50px;
}
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: white;
  margin-bottom: 16px; line-height: 1.2;
}
.cta-inner p    { color: #94b4e0; font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note       { font-size: 0.78rem; color: #6b8fcc; margin-top: 20px; }

/* ===== CONTATO ===== */
#contato { padding: 80px 24px; background: var(--bg); }
.contato-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contato-info h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--text-dark); margin-bottom: 14px;
}
.contato-info p { color: var(--text-soft); margin-bottom: 28px; font-size: 0.97rem; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s;
  color: inherit;
}
.contact-item:hover { border-color: var(--blue-light); transform: translateX(4px); }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-icon.wa   { background: #dcfce7; }
.c-icon.mail { background: var(--blue-pale); }
.c-icon.ouv  { background: #fef9c3; }
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.contact-item span   { font-size: 0.82rem; color: var(--text-soft); }

.contato-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.contato-form h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-card);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-light); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: white;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  font-family: inherit;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }

/* ===== FOOTER ===== */
#footer {
  background: var(--blue-dark);
  color: #94b4e0;
  padding: 60px 24px 30px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo .logo-text { color: white; }
.footer-brand p { font-size: 0.86rem; color: #7090b0; line-height: 1.7; margin: 14px 0; }
.footer-brand .cnpj { font-size: 0.75rem; color: #4a6080; }
.footer-col h5 {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #6080a0; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #94b4e0; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #4a6080; }
.footer-bottom a { color: #6080a0; text-decoration: none; }
.footer-bottom a:hover { color: #94b4e0; }

/* ===== WHATSAPP FLOAT ===== */
#wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; }
.wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.25s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

#back-top {
  position: fixed;
  bottom: 96px; right: 32px;
  z-index: 900;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
#back-top.show { display: flex; }
#back-top:hover { background: var(--blue-main); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-float { display: none; }
  .combo-cards { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 36px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .perfil-cards { grid-template-columns: 1fr; }
  .plans-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  #topbar       { font-size: 0.72rem; }
  .hero-stats   { gap: 20px; }
  .combo-cards  { grid-template-columns: 1fr; }
}

/* ── ASTERISCO SUPERSCRIPT NOS PREÇOS ── */
.price sup,
.plan-price sup,
.combo-price sup,
.movel-price sup {
    font-size: 0.42em;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
    letter-spacing: 0;
    opacity: 0.75;
}

/* Hero card .price especificamente */
.hero-card .price sup {
    font-size: 0.38em;
    vertical-align: super;
    line-height: 0;
}
