/* ============================================================
   NETCENTER — Public Site Styles
   ============================================================ */

:root {
  --primary: #0052CC;
  --primary-dark: #003D99;
  --primary-light: #EBF5FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-900: #0F172A;
  --green: #16A34A;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EAD56;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  margin: 0;
  line-height: 1.6;
}

/* ─── HOME PAGE ──────────────────────────────────────────── */

.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-hero {
  flex: 1;
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B3E 0%, #0052CC 50%, #0066FF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 3rem;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 50%);
}

.home-hero-overlay { display: none; }

.z-1 { position: relative; z-index: 1; }

.home-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  margin-bottom: 1rem;
}

.home-brand-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.home-brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.home-logo { max-height: 70px; }

.home-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}

.home-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}

.home-search-wrapper { max-width: 480px; margin: 0 auto; }

.home-search-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.home-search-group .input-group-text {
  background: white;
  border: none;
  color: var(--gray-400);
  padding-left: 1.25rem;
  font-size: 1.1rem;
}

.home-search-group .form-control {
  border: none;
  font-size: 1rem;
  padding: .8rem 1.25rem .8rem .5rem;
  background: white;
}

.home-search-group .form-control:focus {
  box-shadow: none;
  border: none;
}

/* City Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.city-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.city-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  color: white;
  border-color: rgba(255,255,255,.4);
}

.city-card-icon { font-size: 1.75rem; opacity: .8; }
.city-card-name { font-weight: 700; font-size: .95rem; }
.city-card-state { font-size: .75rem; opacity: .7; }
.city-card-arrow { font-size: 1rem; opacity: .6; margin-top: .25rem; }

.no-results {
  color: rgba(255,255,255,.8);
  padding: 2rem 0;
}

/* Home Footer */
.home-footer {
  background: rgba(0,0,0,.3);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 1rem;
  font-size: .85rem;
}

/* ─── SITE HEADER ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eef0f5;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  border-color: transparent;
  box-shadow: 0 2px 28px rgba(0,0,0,.07);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
  transition: height .3s ease;
}

.site-header.scrolled .header-inner { height: 60px; }

/* ── Logo ── */
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-900);
  flex-shrink: 0;
  margin-left: .75rem;
  justify-self: start;
}

.header-logo img {
  height: 70px;
  width: auto;
  max-width: 220px;
  transition: opacity .2s;
}

.header-logo:hover img { opacity: .78; }

.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

/* ── Lado direito (desktop) ── */
.header-end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.25rem;
}

/* ── Nav links ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav .nav-link {
  position: relative;
  color: #64748b;
  font-size: .845rem;
  font-weight: 500;
  padding: .5rem .85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

/* underline deslizante */
.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: .85rem; right: .85rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}

.header-nav .nav-link:hover { color: var(--primary); }
.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after { transform: scaleX(1); }
.header-nav .nav-link.active { color: var(--primary); font-weight: 700; }

/* ── Separador vertical ── */
.header-sep {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ── Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
}

/* City badge */
.city-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 500;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 7px;
  padding: .28rem .55rem;
  white-space: nowrap;
}

.city-badge i { color: var(--primary); font-size: .72rem; }

.change-city-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--primary);
  text-decoration: none;
  font-size: .71rem;
  font-weight: 700;
  border-radius: 4px;
  padding: .1rem .3rem;
  margin-left: 2px;
  transition: background .15s;
}

.change-city-btn:hover { background: color-mix(in srgb, var(--primary) 8%, white); }

/* Assinante */
.btn-outline-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .38rem .85rem;
  color: #475569;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
}

.btn-outline-header:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, white);
}

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #18a948;
  color: white;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 8px;
  padding: .46rem 1.05rem;
  text-decoration: none;
  border: none;
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(24,169,72,.3);
  transition: background .2s, box-shadow .2s, transform .18s;
}

.btn-whatsapp:hover {
  color: white;
  background: #148f3e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24,169,72,.4);
}

/* WhatsApp mobile (ícone só) */
.btn-whatsapp-sm {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #18a948;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24,169,72,.3);
  transition: background .2s;
}

.btn-whatsapp-sm:hover { background: #148f3e; color: white; }

/* ── Hamburger ── */
.btn-mobile-menu {
  width: 38px; height: 38px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
  flex-shrink: 0;
}

.btn-mobile-menu:hover { background: #f1f5f9; }

.hamburger-line {
  display: block;
  width: 20px; height: 1.5px;
  background: #334155;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s, width .3s;
}

.btn-mobile-menu.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.btn-mobile-menu.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.btn-mobile-menu.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-inner {
  padding: .5rem 0 1rem;
}

.mobile-city-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: #64748b;
  padding: .6rem 1.25rem .55rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: .25rem;
}

.mobile-city-row i { color: var(--primary); }

.mobile-change-city {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--primary);
  text-decoration: none;
  font-size: .73rem;
  font-weight: 700;
  transition: opacity .15s;
}

.mobile-change-city:hover { opacity: .7; }

/* Links do mobile: clean, sem ícone-box */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: .72rem 1.25rem;
  color: #374151;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid #f8fafc;
  transition: background .15s, color .15s, padding-left .15s;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform .18s cubic-bezier(.4,0,.2,1);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #fafbff;
  color: var(--primary);
  padding-left: 1.6rem;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before { transform: scaleY(1); }

.mobile-wpp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: .85rem 1.25rem 0;
  padding: .75rem;
  background: #18a948;
  color: white;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(24,169,72,.25);
  transition: background .2s, transform .18s, box-shadow .2s;
}

.mobile-wpp-btn:hover {
  color: white;
  background: #148f3e;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(24,169,72,.35);
}

/* ─── BANNER ──────────────────────────────────────────────── */

.banner-section { margin-top: 70px; }

.banner-swiper { height: calc(100vh - 70px); min-height: 500px; max-height: 750px; }

.banner-slide {
  background: linear-gradient(135deg, #0D1B3E, #0052CC);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-fallback {
  background: linear-gradient(135deg, #0D1B3E, #0052CC);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,62,.85) 0%, rgba(0,82,204,.5) 60%, transparent 100%);
}

.min-vh-banner { min-height: calc(100vh - 70px); min-height: 500px; }

.banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.banner-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 500px;
}

.btn-banner {
  background: white;
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: .75rem 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 1rem;
  border: none;
}

.btn-banner:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,82,204,.4);
}

/* Swiper custom */
.banner-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px; background: rgba(255,255,255,.5);
}
.banner-pagination .swiper-pagination-bullet-active { background: white; width: 24px; border-radius: 4px; }
.banner-btn-prev, .banner-btn-next { color: white !important; }
.banner-btn-prev::after, .banner-btn-next::after { font-size: 1.25rem; }

/* ─── SECTIONS ────────────────────────────────────────────── */

.section-pad { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ─── ABOUT ───────────────────────────────────────────────── */

.about-text p { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 1rem; }

.about-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; }

.about-image { width: 100%; height: 400px; object-fit: cover; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: -.04em; }
.stat-label { font-size: .85rem; color: var(--gray-600); font-weight: 500; }

.btn-primary-custom {
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: .7rem 1.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,82,204,.3);
}

/* ─── TV SECTION ──────────────────────────────────────────── */

.tv-section {
  background: linear-gradient(135deg, #0D1B3E 0%, #0052CC 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.tv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,.05) 0%, transparent 60%);
}

.tv-channels-counter {
  width: 220px; height: 220px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.tv-channels-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.04em;
  line-height: 1;
}

.tv-channels-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tv-description { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }

.tv-icons { display: flex; flex-wrap: wrap; gap: 1rem; }

.tv-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem .85rem;
  color: white;
  min-width: 80px;
  backdrop-filter: blur(6px);
}

.tv-icon-item i { font-size: 1.5rem; }
.tv-icon-item span { font-size: .75rem; font-weight: 600; }

/* ─── PLANS ───────────────────────────────────────────────── */

.plans-section { background: var(--gray-50); overflow: hidden; }

/* ── Carrossel de planos ── */
.plans-carousel-outer {
  position: relative;
  padding: 0 64px;
  max-width: 1600px;
  margin: 0 auto;
}

.plans-swiper {
  /* overflow: hidden padrão do Swiper — sem barra de rolagem */
  padding: 20px 8px 32px;
}

/* Altura explícita para o flip card funcionar */
.plans-swiper .plan-card-wrapper {
  height: 520px;
}

/* Botões de navegação */
.plans-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, box-shadow .2s, border-color .2s;
  z-index: 20;
  outline: none;
}

.plans-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary) 35%, transparent);
}

.plans-btn-prev { left: 6px; }
.plans-btn-next { right: 6px; }

.plans-nav-btn.swiper-button-disabled {
  opacity: .3;
  pointer-events: none;
}

.plan-card-wrapper {
  perspective: 1200px;
  min-height: 520px;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  padding: .38rem 1.1rem;
  border-radius: 50px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249,115,22,.45);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-card-wrapper.featured .plan-card {
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249,115,22,.2), var(--shadow);
}

.plan-card-wrapper.featured .plan-front::before {
  background: linear-gradient(90deg, #c2410c 0%, #f97316 100%);
}

.plan-card-wrapper.featured .plan-front-icon {
  background: linear-gradient(135deg, #c2410c 0%, #f97316 100%);
  box-shadow: 0 6px 18px rgba(249,115,22,.45);
}

.plan-card {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.plan-card-wrapper:hover .plan-card { transform: rotateY(180deg); }

.plan-front, .plan-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Frente ── */
.plan-front {
  background: white;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  font-weight: 300;
}

/* Borda gradiente no topo via pseudo-elemento */
.plan-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0D1B3E 0%, var(--primary) 100%);
  z-index: 2;
}

.plan-front-header {
  background: transparent;
  padding: 1.75rem 1.5rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.plan-front-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0D1B3E 0%, var(--primary) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: white;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 40%, transparent);
}

.plan-name {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -.02em;
}

.plan-front-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem 1.5rem 1.25rem;
}

.plan-speed {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.plan-speed-wifi {
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}

.plan-speed-value {
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: -.03em;
  display: block;
  line-height: 1;
}

.plan-upload {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: .3rem;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.plan-upload i { color: var(--primary); font-size: .75rem; }

/* Área do preço com linhas decorativas */
.plan-price-area {
  position: relative;
  width: 100%;
  padding: 1.1rem 0;
  display: flex;
  justify-content: center;
  margin: .6rem 0;
}

.plan-price-area::before,
.plan-price-area::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in srgb, var(--primary) 35%, transparent) 30%,
    color-mix(in srgb, var(--primary) 70%, transparent) 50%,
    color-mix(in srgb, var(--primary) 35%, transparent) 70%,
    transparent 100%
  );
  box-shadow: 0 0 8px color-mix(in srgb, var(--primary) 40%, transparent);
}

.plan-price-area::before { top: 0; }
.plan-price-area::after  { bottom: 0; }

.plan-card-wrapper.featured .plan-price-area::before,
.plan-card-wrapper.featured .plan-price-area::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249,115,22,.35) 30%,
    rgba(249,115,22,.7) 50%,
    rgba(249,115,22,.35) 70%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(249,115,22,.4);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.plan-currency { font-size: 1.05rem; font-weight: 700; color: var(--gray-500); }

.plan-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #0D1B3E 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card-wrapper.featured .plan-amount {
  background: linear-gradient(135deg, #c2410c 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.plan-period { font-size: .82rem; color: var(--gray-400); font-weight: 500; }

/* Wrapper que cresce para manter o botão sempre no fundo */
.plan-front-mid {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Descrição na frente */
.plan-front-desc {
  font-size: .81rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.55;
  margin: .6rem 0 0;
  padding-bottom: .4rem;
}

/* Preview features na frente */
.plan-preview-features {
  list-style: none;
  padding: 0;
  margin: .85rem 0 0;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--gray-100);
}

.plan-preview-features li {
  font-size: .82rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .42rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.plan-preview-features li:last-child { border-bottom: none; }
.plan-preview-features li i { color: var(--primary); font-size: .85rem; flex-shrink: 0; }

.plan-obs {
  font-size: .74rem;
  color: var(--gray-400);
  margin-top: .5rem;
  text-align: center;
}

.plan-flip-hint {
  font-size: .76rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid color-mix(in srgb, var(--primary) 25%, transparent);
  background: color-mix(in srgb, var(--primary) 5%, white);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  transition: background .2s, color .2s, border-color .2s;
  width: 100%;
  margin-top: .85rem;
  flex-shrink: 0;
}

.plan-card-wrapper:hover .plan-flip-hint {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.plan-back {
  background: linear-gradient(145deg, #0D1B3E 0%, var(--primary) 100%);
  transform: rotateY(180deg);
  color: white;
  overflow-y: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  font-weight: 300;
}

.plan-back-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}

.plan-back-desc {
  font-size: .82rem;
  opacity: .75;
  margin-bottom: .85rem;
  line-height: 1.4;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.plan-features li {
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: rgba(255,255,255,.7); flex-shrink: 0; font-size: .85rem; }

/* Plan back — apps por categoria */
.plan-apps-section { margin-top: auto; padding-top: .75rem; }

.plan-apps-group { margin-bottom: .65rem; }

.plan-apps-group-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
  margin-bottom: .4rem;
}

.plan-apps-icons { display: flex; flex-wrap: wrap; gap: .35rem; }

.plan-app-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  cursor: help;
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}

.plan-app-icon:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.plan-app-icon img { width: 100%; height: 100%; object-fit: contain; }
.plan-app-icon i { color: white; font-size: .9rem; }

.plan-price-small {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 1rem 0 .75rem;
}

.btn-whatsapp-plan {
  background: var(--whatsapp);
  color: white;
  font-weight: 700;
  border-radius: 50px;
  padding: .65rem 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-size: .9rem;
  margin-top: auto;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-whatsapp-plan:hover { background: var(--whatsapp-dark); color: white; }


/* ─── APPS ────────────────────────────────────────────────── */

.apps-section { background: white; }

.apps-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.apps-category-title::before,
.apps-category-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 35%, transparent));
}

.apps-category-title::after {
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 35%, transparent), transparent);
}

.apps-category-title span {
  background: linear-gradient(135deg, #0D1B3E 0%, var(--primary) 100%);
  color: white;
  padding: .4rem 1.4rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 35%, transparent);
  flex-shrink: 0;
}

.apps-swiper { padding: .5rem 0 1.5rem !important; }

.apps-swiper .swiper-wrapper { justify-content: center; }

.apps-swiper .swiper-slide { width: 108px; }

.app-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.2rem .9rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  position: relative;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

/* Tooltip com nome do app */
.app-card::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) scale(.92);
  background: #0f172a;
  color: white;
  font-size: .72rem;
  font-weight: 600;
  padding: .32rem .75rem;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s, transform .18s;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.app-card::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) scale(.92);
  border: 5px solid transparent;
  border-top-color: #0f172a;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s, transform .18s;
  z-index: 20;
}

.app-card:hover::after,
.app-card:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.app-card-logo {
  width: 72px; height: 72px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

.app-card-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }

.app-logo-placeholder {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
}

.apps-scrollbar { background: var(--gray-200); height: 3px; border-radius: 2px; }
.apps-scrollbar .swiper-scrollbar-drag { background: var(--primary); border-radius: 2px; }

/* App Modal */
.app-modal-content { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.app-modal-header { border-bottom: 1px solid var(--gray-200); }

.app-modal-logo {
  width: 48px; height: 48px; margin-right: 12px;
  display: flex; align-items: center; justify-content: center;
}

.app-modal-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }

.app-modal-desc { color: var(--gray-600); }
.app-modal-desc p { margin-bottom: .5rem; }
.app-modal-desc p:last-child { margin-bottom: 0; }
.app-modal-desc h1,.app-modal-desc h2,.app-modal-desc h3 { font-size: 1rem; font-weight: 600; margin-bottom: .35rem; }
.app-modal-desc ul,.app-modal-desc ol { padding-left: 1.2rem; margin-bottom: .5rem; }
.app-modal-desc strong { color: var(--gray-800); }

.app-modal-info {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--gray-600);
}
.app-modal-info p { margin-bottom: .35rem; }
.app-modal-info p:last-child { margin-bottom: 0; }
.app-modal-info ul,.app-modal-info ol { padding-left: 1.2rem; margin-bottom: .35rem; }
.app-modal-info strong { color: var(--gray-700); }

/* ─── ADVANTAGES ──────────────────────────────────────────── */

.advantages-section { background: var(--gray-50); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.advantage-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.advantage-desc {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq-section { background: white; }

.faq-accordion { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  border: 1.5px solid var(--gray-200) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.faq-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  background: white !important;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.faq-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
}

.faq-button::after { flex-shrink: 0; }

.faq-body {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
  padding: 1rem 1.5rem 1.25rem;
  background: white;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.site-footer { background: #fff; }

/* ── Faixa CTA ── */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 80%, #1e3a8a) 100%);
  padding: 3rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .35rem;
  letter-spacing: -.02em;
}

.footer-cta-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-cta-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-cta-wpp:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-1px); }

.footer-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.footer-cta-outline:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-1px); }

/* ── Corpo ── */
.footer-body {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid #f1f5f9;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

/* Coluna Marca */
.footer-logo-wrap { margin-bottom: .9rem; }
.footer-logo-img  { max-height: 119px; width: auto; display: block; }

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.4rem;
  max-width: 300px;
}

.footer-socials { display: flex; gap: .5rem; }

.footer-social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Rótulo de coluna */
.footer-col-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 1.1rem;
}

/* Lista de navegação */
.footer-nav-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-list a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem 0;
  font-size: .9rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s, gap .18s;
}
.footer-nav-list a i {
  font-size: .65rem;
  color: #cbd5e1;
  transition: color .18s, transform .18s;
}
.footer-nav-list a:hover { color: var(--primary); }
.footer-nav-list a:hover i { color: var(--primary); transform: translateX(2px); }

/* Lista de contato */
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: #475569;
  line-height: 1.45;
}

.fci {
  width: 30px; height: 30px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.fci.wpp { background: #dcfce7; color: var(--whatsapp-dark); }

.footer-contact-list a {
  color: #475569;
  text-decoration: none;
  transition: color .18s;
}
.footer-contact-list a:hover { color: var(--primary); }

/* ── Barra inferior ── */
.footer-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 1.1rem 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #94a3b8;
}

.footer-bar-links {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footer-bar-links a { color: #94a3b8; text-decoration: none; transition: color .18s; }
.footer-bar-links a:hover { color: #475569; }
.footer-bar-links span { color: #cbd5e1; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.12); color: white; background: var(--whatsapp-dark); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-swiper { height: 75vw; min-height: 340px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }

  /* Carrossel de planos no mobile */
  .plans-carousel-outer { padding: 0 0 72px; }
  .plans-swiper .plan-card-wrapper { height: 580px; }
  .plan-card { min-height: 580px; }

  /* Botões de nav abaixo do swiper no mobile */
  .plans-nav-btn { top: auto; bottom: 0; transform: none; }
  .plans-btn-prev { left: calc(50% - 56px); }
  .plans-btn-next { right: calc(50% - 56px); left: auto; }

  /* Flip via toque (classe .tapped adicionada por JS) */
  .plan-card-wrapper.tapped .plan-card { transform: rotateY(180deg); }

  /* Carrossel de apps: desativa centralização e ajusta slide */
  .apps-swiper .swiper-wrapper { justify-content: flex-start; }
  .apps-swiper .swiper-slide { width: 92px; }
  .app-card { padding: 1rem .75rem; }
  .app-card-logo { width: 60px; height: 60px; }
  .app-logo-placeholder { width: 60px; height: 60px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .plans-swiper .plan-card-wrapper { height: 560px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-btns { width: 100%; flex-direction: column; }
  .footer-cta-wpp, .footer-cta-outline { justify-content: center; }
  .home-title { font-size: 1.75rem; }
  .banner-title { font-size: 1.75rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .apps-swiper .swiper-slide { width: 84px; }
}
