/* ============================================================
   MASTER INTERNET – style.css
   Design inspired by Vivo website: clean, human, premium
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Visually hidden but readable by screen readers/crawlers (SEO H1, a11y labels) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  font-family: var(--font-body, 'Hanken Grotesk', system-ui, -apple-system, sans-serif);
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .grad { font-family: var(--font-heading, 'Panton', 'Hanken Grotesk', sans-serif); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- TOKENS ---- */
:root {
  --blue:     #0033CC;
  --blue-dk:  #001a80;
  --blue-lt:  #e8eeff;
  --blue-md:  #c7d4ff;
  --purple:   #6d28d9;
  --green-wa: #25D366;
  --yellow:   #f5c400;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white:    #ffffff;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .24s;

  --shadow-card: 0 4px 24px rgba(0,0,0,.07);
  --shadow-hover: 0 12px 40px rgba(0,51,204,.16);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-hero { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--dur) var(--ease), transform .28s var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.06); }

/* Menu compacto no desktop: ao rolar bastante pra baixo, o header some e
   um botão flutuante aparece no topo. Clicar nele mostra o header normal
   de novo (mesmo desktop, sem virar o menu do mobile); rolar de novo
   esconde o header uma vez mais. */
body.nav-compact .header { transform: translateY(-100%); }
body.nav-compact.header-force-open .header { transform: none; }
body.nav-compact.header-force-open .floating-menu-btn { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(.7); }

.floating-menu-btn {
  position: fixed;
  top: 16px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(0,51,204,.35), 0 2px 10px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.7);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  cursor: pointer;
}
.floating-menu-btn span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
body.nav-compact .floating-menu-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
@media (max-width: 900px) {
  .floating-menu-btn { display: none !important; }
}

/* TIER 1: TOPBAR */
.topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 12px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
}

/* Compact logo variant used inside the 36px topbar */
.topbar-logo .logo-img { height: 16px; }

.topbar-tabs {
  display: flex;
  height: 100%;
}
.topbar-tab {
  padding: 0 16px;
  height: 100%;
  font-weight: 600;
  color: var(--gray-500);
  border-right: 1px solid var(--gray-200);
  border-left: 1px solid transparent;
  transition: color var(--dur), background var(--dur);
}
.topbar-tab:first-child { border-left: 1px solid var(--gray-200); }
.topbar-tab.active { background: var(--white); color: var(--blue); }
.topbar-tab:hover:not(.active) { color: var(--gray-900); background: var(--gray-100); }

.topbar-actions {
  display: flex;
  height: 100%;
  align-items: center;
}
.btn-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 12px;
  color: var(--gray-700);
  font-weight: 600;
  border-left: 1px solid var(--gray-200);
  transition: color var(--dur), background var(--dur);
}

/* SEARCH */
.search-wrap { position: relative; height: 100%; }
.search-wrap .btn-icon { cursor: pointer; }
.search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  max-width: 90vw;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 300;
}
.search-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200);
}
.search-input-row svg { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0; }
.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: transparent;
}
#search-close { color: var(--gray-400); flex-shrink: 0; }
#search-close:hover { color: var(--gray-700); }
#search-close svg { width: 16px; height: 16px; }
.search-results { max-height: 380px; overflow-y: auto; padding: 8px; }
.search-result-group-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  padding: 8px 8px 4px;
}
.search-result-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 8px;
  border-radius: 8px;
  transition: background var(--dur);
}
.search-result-item:hover, .search-result-item:focus { background: var(--gray-50); }
.search-result-title { font-size: 13.5px; font-weight: 700; color: var(--gray-900); }
.search-result-sub { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.search-empty, .search-hint { padding: 18px 12px; text-align: center; font-size: 13px; color: var(--gray-500); }
.btn-icon:hover { background: var(--gray-100); color: var(--blue); }
.btn-icon svg { width: 14px; height: 14px; }

.topbar-login {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 16px;
  color: var(--blue);
  font-weight: 700;
  background: var(--blue-lt);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  transition: background var(--dur);
}
.topbar-login:hover { background: var(--blue-md); }
.topbar-login svg { width: 14px; height: 14px; }

/* TIER 2: NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* LOGO */
.logo { display: inline-flex; align-items: flex-end; gap: 6px; line-height: 1; }
.navbar-logo-mobile { display: none; }
.logo-img { height: 22px; width: auto; display: block; }
.logo-img-white { filter: brightness(0) invert(1); }

/* MAIN NAV DESKTOP */
.main-nav { display: flex; align-items: center; height: 100%; }
.nav-list { display: flex; align-items: center; height: 100%; margin: 0; padding: 0; }
.nav-item { height: 100%; display: flex; align-items: center; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--dur);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--dur); }
.nav-item:hover > .nav-link { color: var(--blue); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur) var(--ease);
}
.nav-item.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  display: flex;
  gap: 40px;
  padding: 32px 28px 48px;
  min-height: 180px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.mega-col {
  flex: 0 1 260px;
  min-width: 200px;
}
.mega-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.mega-col a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--dur);
}
.mega-col a:hover {
  color: var(--blue);
}

/* HAMBURGER */
.ham {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background var(--dur);
}
.ham:hover { background: var(--gray-100); }
.ham span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--dur) var(--ease); }

/* DRAWER */
.drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  animation: slideDown .2s var(--ease);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.drawer.open { display: flex; }

.drawer-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-tab {
  flex: 1;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 2px solid transparent;
}
.drawer-tab.active {
  color: var(--blue);
  background: var(--white);
  border-bottom-color: var(--blue);
}

.drawer-content {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 24px;
}
.drawer-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
  display: block;
}
.drawer-link:hover { color: var(--blue); }

.drawer-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}
.drawer-acc-btn svg {
  width: 16px; height: 16px;
  transition: transform var(--dur);
}
.drawer-acc.open .drawer-acc-btn svg { transform: rotate(180deg); }
.drawer-acc-btn:hover { color: var(--blue); }

.drawer-acc-content {
  display: none;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: 0 0 8px 8px;
}
.drawer-acc.open .drawer-acc-content { display: flex; flex-direction: column; gap: 12px; }

.drawer-acc-content h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}
.drawer-acc-content h4:first-child { margin-top: 0; }
.drawer-acc-content a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.drawer-divider { height: 8px; background: var(--gray-100); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .main-nav { display: none; }
  .ham { display: flex; }
  .navbar-logo-mobile { display: inline-flex; }
}

/* GENERIC BUTTONS (preserved) */
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-md);
  transition: all var(--dur) var(--ease);
}
.btn-ghost-sm:hover { background: var(--blue-lt); border-color: var(--blue); }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  transition: all var(--dur) var(--ease);
}
.btn-primary-sm:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,51,204,.3); }

/* ============================================================
   HERO  (split layout, like Vivo)
   ============================================================ */
.hero {
  min-height: calc(100vh - 68px);
  max-height: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}

/* TEXT SIDE */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-lt);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  width: fit-content;
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

/* PRICE BOX */
.hero-price-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--blue-lt);
  border: 1.5px solid var(--blue-md);
  border-radius: var(--r-md);
  padding: 16px 24px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-price-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-price-main {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  color: var(--blue);
}
.hero-price-cur { font-size: 1.1rem; font-weight: 700; padding-top: 6px; }
.hero-price-val { font-size: 3.4rem; font-weight: 900; letter-spacing: -2px; }
.hero-price-dec { font-size: 1.1rem; font-weight: 700; padding-top: 14px; }
.hero-price-mo  { font-size: .9rem; font-weight: 500; color: var(--gray-500); margin-left: 2px; }
.hero-price-note {
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* HERO ACTIONS */
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 6px 20px rgba(0,51,204,.35);
  transition: all var(--dur) var(--ease);
}
.btn-hero-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,51,204,.45); }

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #128C7E;
  border: 1.5px solid rgba(37,211,102,.4);
  background: rgba(37,211,102,.06);
  transition: all var(--dur) var(--ease);
}
.btn-hero-wa:hover { background: var(--green-wa); color: var(--white); border-color: var(--green-wa); transform: translateY(-2px); }

/* IMAGE SIDE */
.hero-img-col {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--blue-lt) 0%, #e0e7ff 60%, #f3e8ff 100%);
  clip-path: ellipse(90% 85% at 60% 50%);
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-img-badge {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  font-size: 13px;
  animation: float 4s ease-in-out infinite;
}
.hero-img-badge div { display: flex; flex-direction: column; gap: 2px; }
.hero-img-badge strong { font-weight: 700; color: var(--gray-900); font-size: 14px; }
.hero-img-badge span { color: var(--gray-500); font-size: 12px; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   HERO CAROUSEL — full-bleed banner slides
   ============================================================ */
.hero-carousel {
  position: relative;
  height: 560px;
  background: var(--gray-900);
  overflow: hidden;
}
.hero-carousel .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-carousel .swiper-slide::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-carousel .swiper-slide-active::before {
  animation: heroKenBurns 7s cubic-bezier(.25,.1,.25,1) forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-slide-scrim { z-index: 1; }
.hero-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,12,32,.94) 0%, rgba(8,12,32,.75) 40%, rgba(8,12,32,.3) 68%, rgba(8,12,32,0) 88%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  padding: 0 28px;
  margin: 0 auto 0 max(28px, calc((100vw - 1200px) / 2 + 28px));
  color: var(--white);
}
.hero-timer {
  position: absolute;
  top: 24px; left: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
}
.hero-timer svg { width: 15px; height: 15px; color: var(--yellow); flex-shrink: 0; }
.hero-timer strong { font-variant-numeric: tabular-nums; font-weight: 800; }

.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.16);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 18px;
  width: fit-content;
}
.hero-slide-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-slide-price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  width: fit-content;
}
.hero-slide-speed {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  border-right: 1px solid rgba(255,255,255,.28);
  padding-right: 16px;
}
.hero-slide-price-box { display: flex; flex-direction: column; }
.hero-slide-price-pre { font-size: 11px; opacity: .75; }
.hero-slide-price-main { display: flex; align-items: flex-start; gap: 2px; line-height: 1; }
.hero-slide-price-cur { font-size: 1rem; font-weight: 700; padding-top: 4px; }
.hero-slide-price-val { font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; font-family: var(--font-heading); }
.hero-slide-price-mo { font-size: .8rem; opacity: .75; align-self: flex-end; padding-bottom: 5px; margin-left: 2px; }
.hero-slide-promo { width: 100%; font-size: 12px; opacity: .85; margin-top: 4px; }

/* STAGGERED SLIDE-IN: each piece of a banner enters on its own beat, Vivo-style */
.hero-timer,
.hero-slide-content > * {
  opacity: 0;
  transform: translateY(22px);
}
.hero-carousel .swiper-slide-active .hero-timer,
.hero-carousel .swiper-slide-active .hero-slide-content > * {
  animation: heroContentIn .7s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-carousel .swiper-slide-active .hero-timer { animation-delay: .05s; }
.hero-carousel .swiper-slide-active .hero-slide-content > *:nth-child(1) { animation-delay: .15s; }
.hero-carousel .swiper-slide-active .hero-slide-content > *:nth-child(2) { animation-delay: .28s; }
.hero-carousel .swiper-slide-active .hero-slide-content > *:nth-child(3) { animation-delay: .42s; }
.hero-carousel .swiper-slide-active .hero-slide-content > *:nth-child(4) { animation-delay: .56s; }
@keyframes heroContentIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel .swiper-slide::before { animation: none !important; }
  .hero-timer,
  .hero-slide-content > * { opacity: 1; transform: none; animation: none !important; }
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev { color: var(--white); }
.hero-carousel .swiper-pagination-bullet { background: var(--white); opacity: .5; }
.hero-carousel .swiper-pagination-bullet-active { opacity: 1; background: var(--blue); }

/* THUMBNAIL NAV (bottom-right, like Vivo's slide picker) */
.hero-thumbs {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 20px;
  display: flex;
  gap: 10px;
}
.hero-thumb {
  width: 88px; height: 58px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color var(--dur), transform var(--dur);
  flex-shrink: 0;
}
.hero-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,12,32,.4);
  transition: background var(--dur);
}
.hero-thumb span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hero-thumb:hover { transform: translateY(-2px); }
.hero-thumb.active { border-color: var(--white); }
.hero-thumb.active::after { background: rgba(0,51,204,.18); }

@media (max-width: 900px) {
  .hero-carousel { height: 480px; }
  .hero-thumbs { display: none; }
  .hero-slide-content { margin-left: 24px; max-width: 88%; }
}
@media (max-width: 600px) {
  .hero-carousel { height: 460px; }
  .hero-timer { top: 14px; left: 14px; padding: 6px 12px; font-size: 11px; }
  .hero-slide-price { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 16px; }
  .hero-slide-speed { border-right: none; padding-right: 0; }
}

/* ============================================================
   CHIPS BAR
   ============================================================ */
.chips-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.chips-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: border-color var(--dur), color var(--dur);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip svg { color: var(--blue); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.grad {
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   MELHORES OFERTAS
   ============================================================ */
.offers-section {
  padding: 70px 0;
  background: var(--gray-50);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.offer-discount {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(230,57,70,.35);
}
.offer-badge {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0,51,204,.3);
}
.offer-title { font-size: 1.3rem; font-weight: 800; color: var(--gray-900); margin-top: 10px; margin-bottom: 4px; }
.offer-sub { font-size: 13.5px; color: var(--gray-500); margin-bottom: 20px; }

.offer-price { margin-bottom: 22px; }
.offer-price-original {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.offer-price-main { display: flex; align-items: baseline; gap: 2px; color: var(--blue); line-height: 1; }
.offer-price-main .currency { font-size: 1rem; font-weight: 700; }
.offer-price-main .value { font-size: 2.4rem; font-weight: 900; letter-spacing: -1px; font-family: var(--font-heading); }
.offer-price-main .cents { font-size: 1rem; font-weight: 700; }
.offer-price-main .mo { font-size: .8rem; font-weight: 500; color: var(--gray-500); margin-left: 2px; }

.offer-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.offer-feats li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-700); }
.offer-feats li svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

.offer-included-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.oil-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
}
.oil-item img {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.oil-item span { font-size: 12.5px; font-weight: 600; color: var(--gray-700); }

.btn-offer {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  transition: background var(--dur), transform var(--dur);
}
.btn-offer:hover { background: var(--blue-dk); transform: translateY(-1px); }

.offer-promo-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 6px;
}

.offer-choice-group { margin-bottom: 20px; }
.offer-choice-group-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.offer-choice-options { display: flex; flex-wrap: wrap; gap: 8px; }
.offer-choice-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
}
.offer-choice-btn img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.offer-choice-btn:hover { border-color: var(--blue); }
.offer-choice-btn.selected {
  background: rgba(0,51,204,.08);
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   ASSINATURAS / SVA
   ============================================================ */
.sva-section { padding: 80px 0; background: var(--white); }
.sva-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.sva-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 26px 16px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sva-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--blue-md); }
.sva-card-logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sva-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.sva-card-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }

.sva-card-static { cursor: default; }
.sva-card-static:hover { transform: none; box-shadow: none; border-color: var(--gray-200); }

.sva-see-all-wrap { display: flex; justify-content: center; margin-top: 32px; }
.sva-see-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-md);
  color: var(--blue);
  font-size: 14.5px;
  font-weight: 700;
  transition: all var(--dur) var(--ease);
}
.sva-see-all-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-1px); }

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans {
  padding: 100px 0 80px;
  background: var(--white);
}

.build-cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--gray-200);
  padding: 40px;
  align-items: center;
}

.bpc-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bpc-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bpc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.bpc-features svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.bpc-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-builder {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: 0 24px 60px -24px rgba(0,51,204,.22);
}

.mock-float-badge {
  position: absolute;
  top: -16px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  animation: float 4s ease-in-out infinite;
}
.mock-float-badge svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

.mock-step { display: flex; flex-direction: column; gap: 12px; }
.mock-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.mock-step-num {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.mock-pills { display: flex; gap: 8px; }
.mp { flex: 1; text-align: center; background: var(--white); border: 1.5px solid var(--gray-200); padding: 12px 0; border-radius: 10px; font-size: 13px; font-weight: 800; color: var(--gray-500); transition: all var(--dur) var(--ease); cursor: pointer; }
.mp:hover { border-color: var(--blue-md); transform: translateY(-1px); }
.mp.active { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 8px 18px rgba(0,51,204,.28); transform: translateY(-1px); }

.mock-icons { display: flex; gap: 12px; }
.mi {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-400);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.mi:hover { border-color: var(--blue-md); transform: translateY(-1px); }
.mi svg { width: 21px; height: 21px; }
.mi.active { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); box-shadow: 0 8px 18px rgba(0,51,204,.16); transform: translateY(-1px); }

.mock-price {
  margin-top: 2px;
  padding-top: 22px;
  border-top: 1px dashed var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mp-lbl { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.mp-val { font-size: 24px; font-weight: 900; color: var(--gray-900); font-family: var(--font-heading); }
.mp-val small { font-size: 13px; font-weight: 700; color: var(--gray-500); }

.mi img { width: 26px; height: 26px; border-radius: 6px; object-fit: cover; }

.mock-cta-btn {
  display: block;
  margin-top: 18px;
  padding: 13px;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mock-cta-btn:hover { background: var(--blue-dk); transform: translateY(-1px); }

@media (max-width: 800px) {
  .build-cta-wrap { grid-template-columns: 1fr; padding: 24px; }
}

/* ============================================================
   FEATURE SPLIT SECTION
   ============================================================ */
.feature-split {
  padding: 100px 0;
  background: var(--gray-50);
}
.feature-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* IMG SIDE */
.feature-img-side { position: relative; }
.feature-img-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.feature-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-lg);
}
.feature-img-chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  animation: float 4s ease-in-out infinite;
}
.feature-img-chip svg { flex-shrink: 0; }

/* TEXT SIDE */
.feature-h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 16px 0 16px;
}
.feature-p { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }

.feature-list {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
}
.feat-icon-box {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur);
}
.feature-list li:hover .feat-icon-box { background: var(--blue); }
.feat-icon-box svg { width: 22px; height: 22px; color: var(--blue); transition: color var(--dur); }
.feature-list li:hover .feat-icon-box svg { color: var(--white); }
.feature-list li > div > strong { display: block; font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.feature-list li > div > p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.btn-link-arrow {
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--dur);
  gap: 4px;
}
.btn-link-arrow:hover { gap: 10px; }

/* ============================================================
   WHY MASTER
   ============================================================ */
.why { padding: 100px 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--blue-md); }
.why-card:hover::after { transform: scaleX(1); }
.why-card-link {
  display: block;
  cursor: pointer;
  border: 2px solid var(--blue);
}
.why-card-link::after { transform: scaleX(1); }
.why-card-link:hover { border-color: var(--blue-dk); }
.why-card-link .why-num { background: var(--blue); color: #fff; }

.why-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
  background: var(--blue-lt);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ============================================================
   BLOG HIGHLIGHTS
   ============================================================ */
.blog-highlights { padding: 100px 0; background: var(--gray-50); }
.blog-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-highlight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.blog-highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--blue-md); }
.blog-highlight-cover {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--blue-lt);
  overflow: hidden;
}
.blog-highlight-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-highlight-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.blog-highlight-body { padding: 22px 24px 26px; }
.blog-highlight-meta { font-size: 12.5px; color: var(--gray-500); font-weight: 600; margin-bottom: 8px; }
.blog-highlight-title { font-size: 17px; font-weight: 800; color: var(--gray-900); line-height: 1.35; margin-bottom: 8px; }
.blog-highlight-excerpt { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-highlights-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--gray-50); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--dur) var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--blue-md); }

.testi-stars { font-size: 18px; color: #f59e0b; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card > p { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testi-author span { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}
.cta-strip-blob {
  position: absolute;
  top: -60%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,51,204,.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-left h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 900; color: var(--white); line-height: 1.2;
  letter-spacing: -.5px; margin-bottom: 10px;
}
.cta-strip-left p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; }
.cta-strip-right { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-strip-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-size: 16px; font-weight: 700;
  background: var(--green-wa); color: var(--white);
  box-shadow: 0 6px 22px rgba(37,211,102,.4);
  transition: all var(--dur) var(--ease);
}
.btn-strip-wa:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }

.btn-strip-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 50px;
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.25);
  transition: all var(--dur) var(--ease);
}
.btn-strip-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; background: var(--white); }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: start;
}
.faq-sub { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin: 16px 0 24px; }

.btn-faq-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  background: var(--green-wa); color: var(--white);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-faq-wa:hover { background: #1ea855; transform: translateY(-1px); box-shadow: 0 7px 20px rgba(37,211,102,.45); }

/* ACCORDION */
.accordion { display: flex; flex-direction: column; gap: 10px; }

.acc-item {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.acc-item:has(.acc-q[aria-expanded="true"]) {
  border-color: var(--blue-md);
  box-shadow: 0 4px 16px rgba(0,51,204,.08);
  background: var(--white);
}

.acc-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  font-size: 15px; font-weight: 600; color: var(--gray-900);
  text-align: left;
  transition: color var(--dur);
}
.acc-q:hover { color: var(--blue); }

.acc-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--gray-500);
  transition: transform var(--dur) var(--ease), color var(--dur);
}
.acc-q[aria-expanded="true"] .acc-icon { transform: rotate(-180deg); color: var(--blue); }

.acc-a { padding: 0 20px 18px; font-size: 14.5px; color: var(--gray-500); line-height: 1.8; }
.acc-a a { color: var(--blue); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--gray-900); color: var(--white); }

.footer-main { padding: 64px 0 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
}
.footer-cols-mount {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 48px;
}

.footer-brand-col {}
.footer-brand-col .logo-img { height: 26px; margin-bottom: 4px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; margin: 14px 0 20px; max-width: 260px; }

.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  background: rgba(37,211,102,.12); color: var(--green-wa);
  border: 1px solid rgba(37,211,102,.3);
  transition: all var(--dur) var(--ease);
}
.footer-wa-btn:hover { background: var(--green-wa); color: var(--white); }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.14);
  transition: all var(--dur) var(--ease);
}
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-social-icon:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--dur); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: var(--white);
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: all var(--dur) var(--ease);
  animation: popIn .6s var(--ease) 1s both;
}
.float-wa:hover { transform: scale(1.04) translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.55); background: #1ea855; }

@keyframes popIn {
  from { opacity: 0; transform: scale(.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE – TABLET ≤ 960px
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-text-col { max-width: 100%; padding-top: 52px; padding-bottom: 0; }
  .hero-img-col { height: 360px; }
  .hero-img-blob { clip-path: none; }

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-highlight { transform: none; }
  .plan-highlight:hover { transform: translateY(-6px); }

  .feature-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-img-wrap img { height: 300px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-right { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols-mount { gap: 36px; }

  .nav { display: none; }
  .header-actions { display: none; }
  .ham { display: flex; }
}

/* ============================================================
   RESPONSIVE – MOBILE ≤ 600px
   ============================================================ */
@media (max-width: 600px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-img-col { height: 280px; }
  .hero-img-badge { bottom: 16px; left: 16px; font-size: 12px; padding: 10px 14px; }

  .chips-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .chip { flex-shrink: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .blog-highlights-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-cols-mount { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }

  .float-wa { bottom: 16px; right: 16px; padding: 12px 16px; }
  .float-wa span { display: none; }
}

/* ============================================================
   CITY SELECTOR (topbar button + drawer + modal)
   ============================================================ */
.drawer-city {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: var(--blue-lt);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-city svg:first-child { width: 18px; height: 18px; flex-shrink: 0; }
.drawer-city span { flex: 1; text-align: left; }
.drawer-city-chevron { width: 16px; height: 16px; opacity: .7; }

.city-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease);
}
.city-modal-overlay.open { opacity: 1; visibility: visible; }

.city-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform var(--dur) var(--ease);
}
.city-modal-overlay.open .city-modal { transform: translateY(0); }

.city-modal h3 { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.city-modal-sub { color: var(--gray-500); font-size: 14px; margin-bottom: 20px; }

.city-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-500);
  background: var(--gray-100);
  transition: background var(--dur), color var(--dur);
}
.city-modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.city-modal-close svg { width: 18px; height: 18px; }

.city-modal-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  margin-bottom: 20px;
  transition: border-color var(--dur);
}
.city-modal-search-wrap:focus-within { border-color: var(--blue); }
.city-modal-search-wrap svg { width: 18px; height: 18px; color: var(--gray-500); flex-shrink: 0; }
.city-modal-search-wrap input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  color: var(--gray-900);
}

.city-modal-list { overflow-y: auto; padding-right: 4px; }
.city-modal-group + .city-modal-group { margin-top: 18px; }
.city-modal-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.city-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.city-modal-item {
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--dur) var(--ease);
}
.city-modal-item:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.city-modal-empty { color: var(--gray-500); font-size: 14px; text-align: center; padding: 20px 0; }

@media (max-width: 600px) {
  .city-modal { padding: 24px 20px; max-height: 90vh; }
  .city-modal-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POPUP (inicial / saída) — configurável via admin
   ============================================================ */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease);
}
.site-popup-overlay.open { opacity: 1; visibility: visible; }

.site-popup {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform var(--dur) var(--ease);
}
.site-popup-overlay.open .site-popup { transform: translateY(0) scale(1); }

.site-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-500);
  background: var(--gray-100);
  transition: background var(--dur), color var(--dur);
}
.site-popup-close:hover { background: var(--gray-200); color: var(--gray-900); }
.site-popup-close svg { width: 18px; height: 18px; }

.site-popup-image-wrap {
  margin: -32px -32px 20px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  max-height: 180px;
}
.site-popup-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   IMAGE LIGHTBOX (ex: "Entenda sua fatura")
   ============================================================ */
.img-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15, 23, 42, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: opacity var(--dur) var(--ease);
}
.img-lightbox-overlay.open { opacity: 1; visibility: visible; }
.img-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 48px);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  margin: auto;
  display: block;
}
.img-lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  transition: background var(--dur);
}
.img-lightbox-close:hover { background: rgba(255,255,255,.3); }
.img-lightbox-close svg { width: 20px; height: 20px; }

.site-popup-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.site-popup h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 10px;
}
.site-popup-text {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 22px;
}
.site-popup-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  background: var(--green-wa); color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: all var(--dur) var(--ease);
}
.site-popup-button:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.45); }

@media (max-width: 480px) {
  .site-popup { padding: 26px 22px; }
  .site-popup-image-wrap { margin: -26px -22px 18px; }
}
