/* ===================================================
   WLS SOLUÇÕES — Institutional Website
   Main Stylesheet
   =================================================== */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --blue-900: #021535;
  --blue-800: #03204F;
  --blue-700: #0A3A7A;
  --blue-600: #0057B8;
  --blue-500: #1976D2;
  --blue-400: #2196F3;
  --blue-300: #42A5F5;
  --cyan:     #00C8FF;
  --cyan-dim: #0088BB;

  --dark:   #060D1F;
  --dark-2: #0A1628;
  --dark-3: #0D1E38;

  --white:     #FFFFFF;
  --off-white: #F4F8FF;
  --text:      #1A2640;
  --text-2:    #3D5278;
  --muted:     #64748B;

  --grad-primary: linear-gradient(135deg, #0057B8 0%, #00C8FF 100%);
  --grad-text:    linear-gradient(135deg, #2196F3 0%, #00C8FF 100%);
  --grad-dark:    linear-gradient(180deg, #060D1F 0%, #0A1628 100%);

  --shadow-s:  0 2px 10px rgba(0,87,184,.14);
  --shadow-m:  0 8px 32px  rgba(0,87,184,.22);
  --shadow-l:  0 20px 60px rgba(0,87,184,.32);
  --shadow-xl: 0 30px 80px rgba(0,0,0,.4);

  --radius-s:  8px;
  --radius-m:  16px;
  --radius-l:  24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(.4,0,.2,1);
  --t:  .3s var(--ease);
  --t2: .6s var(--ease);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 100px;
  --wrap: 1280px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--t); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ─── TYPOGRAPHY HELPERS ─── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.dark-section { background: var(--dark); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,.55); }

/* Tag pill */
.tag {
  display: inline-block;
  background: linear-gradient(135deg,rgba(0,87,184,.1),rgba(0,200,255,.08));
  color: var(--blue-400);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(0,87,184,.2);
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(0,200,255,.1);
  color: var(--cyan);
  border-color: rgba(0,200,255,.3);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.14);
  opacity: 0;
  transition: var(--t);
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-m);
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: var(--shadow-l); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ─── SCROLL REVEAL ─── */
/* Só oculta elementos após JS estar pronto — evita tela em branco */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible,
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: .1s; }
.reveal-delay-2.visible { transition-delay: .2s; }
.reveal-delay-3.visible { transition-delay: .3s; }

/* ═══════════════════════════════════════════════
   HEADER — glassmorphism premium
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t2), box-shadow var(--t2), border-color var(--t2);
  background: transparent;
}
.header.scrolled {
  background: rgba(2,11,36,.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(0,200,255,.1);
  box-shadow: 0 4px 40px rgba(0,0,0,.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-pill {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: var(--t);
  line-height: 0;
  flex-shrink: 0;
}
.logo-pill img {
  height: 90px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.18)
          drop-shadow(0 2px 22px rgba(90,160,255,.75));
  transition: filter var(--t), transform var(--t);
}
.logo-pill:hover img {
  transform: scale(1.07);
  filter: invert(1) hue-rotate(180deg) brightness(1.35)
          drop-shadow(0 4px 32px rgba(90,160,255,1));
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(255,255,255,.75);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-link:hover::after,
.nav-link.active::after { width: 16px; }

/* CTA do menu */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-primary);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,87,184,.35);
  transition: var(--t);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,87,184,.55);
  color: var(--white);
}
.nav-cta i { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-s);
  background: rgba(255,255,255,.1);
  margin-left: 8px;
  transition: var(--t);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO — layout duas colunas premium
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020B24;
}

/* ── Imagem de fundo ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #020B24;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  pointer-events: none;
  user-select: none;
  /* Realça nitidez, contraste e saturação da imagem */
  filter: contrast(1.08) saturate(1.2) brightness(1.05);
  image-rendering: high-quality;
}

/* Overlay: escuro só onde o texto fica, transparente à direita para revelar a cidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(2,11,36,.88) 0%,
      rgba(2,11,36,.65) 38%,
      rgba(2,11,36,.18) 62%,
      rgba(2,11,36,.05) 100%
    ),
    linear-gradient(180deg,
      rgba(2,11,36,.35) 0%,
      rgba(2,11,36,.0)  35%,
      rgba(2,11,36,.55) 80%,
      rgba(2,11,36,.97) 100%
    );
}

/* Partículas canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
}

/* ── Layout inner ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  min-height: 100vh;
  width: 100%; /* garante que o container ocupe largura total dentro do flex pai */
}

/* ── COLUNA ESQUERDA ── */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
  max-width: 660px;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.28);
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  position: relative;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: badgePulse 1.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.7); }
}
.hero-badge i { font-size: .8rem; }

/* Título */
.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -.5px;
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 460px;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Micro info */
.hero-micro {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-micro li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.48);
  font-weight: 500;
}
.hero-micro li i { color: var(--cyan); font-size: .7rem; }

/* ── Stat cards glassmorphism ── */
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,200,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  min-width: 110px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.stat-card:hover {
  background: rgba(0,87,184,.12);
  border-color: rgba(0,200,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-icon {
  width: 36px; height: 36px;
  background: rgba(0,200,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.stat-icon i { font-size: .9rem; color: var(--cyan); }
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.5px;
}
.stat-lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  line-height: 1.3;
}

/* ── COLUNA DIREITA ── */
.hero-right { display: none; }
.hero-city-img { display: none; }

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%  { opacity: 1; transform: translateY(0); }
  100%{ opacity: 0; transform: translateY(16px); }
}

/* ── Animações de entrada ── */
.hero-anim-fade {
  opacity: 0;
  animation: heroFadeIn .7s var(--ease) forwards;
  animation-delay: .1s;
}
.hero-anim-slide-left,
.hero-anim-slide-left-d1,
.hero-anim-slide-left-d2,
.hero-anim-slide-left-d3,
.hero-anim-slide-left-d4 {
  opacity: 0;
  animation: heroSlideLeft .8s var(--ease) forwards;
}
.hero-anim-slide-left    { animation-delay: .25s; }
.hero-anim-slide-left-d1 { animation-delay: .4s; }
.hero-anim-slide-left-d2 { animation-delay: .55s; }
.hero-anim-slide-left-d3 { animation-delay: .68s; }
.hero-anim-slide-left-d4 { animation-delay: .82s; }

.hero-anim-slide-right {
  opacity: 0;
  animation: heroSlideRight .9s var(--ease) .35s forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════
   EXPERIÊNCIA
   ═══════════════════════════════════════════════ */
.experiencia { background: var(--off-white); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.exp-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-s);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-l);
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg,rgba(0,87,184,.1),rgba(0,200,255,.08));
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--t);
}
.exp-icon i {
  font-size: 1.9rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exp-card:hover .exp-icon {
  background: var(--grad-primary);
  transform: scale(1.1) rotate(5deg);
}
.exp-card:hover .exp-icon i {
  background: var(--white);
  -webkit-background-clip: text;
  background-clip: text;
}

.exp-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.exp-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.link-arrow {
  color: var(--blue-400);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.link-arrow i { transition: transform var(--t); }
.link-arrow:hover { color: var(--blue-600); gap: 10px; }
.link-arrow:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   PLANOS
   ═══════════════════════════════════════════════ */
.planos { position: relative; overflow: hidden; }

.planos-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,87,184,.18) 0%, transparent 68%);
  pointer-events: none;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 380px));
  gap: 22px;
  align-items: start;
  justify-content: center;
}

.plano-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-l);
  padding: 38px 26px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.plano-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,87,184,.45);
  box-shadow: var(--shadow-m);
}

/* Popular card */
.plano-popular {
  background: linear-gradient(170deg,rgba(0,87,184,.18) 0%,rgba(0,200,255,.06) 100%);
  border: 2px solid var(--blue-400) !important;
  box-shadow: 0 0 50px rgba(0,87,184,.28), var(--shadow-m);
  transform: scale(1.04);
  z-index: 1;
}
.plano-popular:hover { transform: scale(1.04) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
}

.plano-top { margin-bottom: 28px; padding-top: 10px; }

.plano-icon-wrap {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
}
.plano-icon-wrap i { font-size: 1.4rem; color: var(--cyan); }
.plano-popular .plano-icon-wrap { background: rgba(0,200,255,.14); }

.plano-speed {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plano-speed span {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: 4px;
}
.plano-popular .plano-speed { color: var(--cyan); }

.plano-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.plano-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.plano-list li i { color: var(--cyan); font-size: .75rem; flex-shrink: 0; }
.plano-popular .plano-list li { color: rgba(255,255,255,.9); }
.plano-card .btn { width: 100%; justify-content: center; }

/* Aviso de disponibilidade */
.plano-aviso {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.plano-aviso i { color: rgba(0,200,255,.5); font-size: .7rem; flex-shrink: 0; }
.plano-aviso-dark  { color: rgba(0,0,0,.45); }
.plano-aviso-dark i { color: var(--blue-500); }
.plano-aviso-light { color: rgba(255,255,255,.5); }
.plano-aviso-light i { color: rgba(0,200,255,.6); }

/* Preço do plano */
.plano-price {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin: -8px 0 22px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.plano-price strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plano-popular .plano-price strong { color: var(--cyan); }
.plano-price span { font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 400; }

/* Promoções abaixo dos planos */
.planos-promos {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.promo-card {
  flex: 1;
  min-width: 260px;
  background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: var(--radius-s);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.promo-card > i {
  font-size: 1.8rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.promo-card-text strong {
  display: block;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.promo-card-text p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   COMBOS
   ═══════════════════════════════════════════════ */
.combos { background: var(--off-white); }

.combos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: start;
}

.combo-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-s);
  transition: var(--t);
  position: relative;
}
.combo-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-l); }

/* Dark highlight combo */
.combo-destaque {
  background: var(--dark-2);
  border: 2px solid rgba(0,87,184,.4);
  box-shadow: var(--shadow-m), 0 0 0 1px rgba(0,200,255,.08);
}
.combo-destaque:hover { box-shadow: var(--shadow-l), 0 0 0 1px rgba(0,200,255,.18); }

.destaque-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.combo-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.ci {
  width: 48px; height: 48px;
  background: linear-gradient(135deg,rgba(0,87,184,.1),rgba(0,200,255,.08));
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci i {
  font-size: 1.2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ci-light { background: rgba(255,255,255,.08); }
.ci-plus { color: var(--muted); font-size: .7rem; }
.ci-plus-light { color: rgba(255,255,255,.35); }

.combo-card h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.combo-destaque h3 { color: var(--white); }

.combo-card > p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.combo-destaque > p { color: rgba(255,255,255,.58); }

.combo-list {
  display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px;
}
.combo-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; color: var(--muted);
}
.combo-list li i { color: var(--blue-400); font-size: .8rem; flex-shrink: 0; }
.combo-list-light li { color: rgba(255,255,255,.7); }
.combo-list-light li i { color: var(--cyan); }
.combo-card .btn { width: 100%; justify-content: center; }

/* Preço no combo card */
.combo-card h3 { margin-bottom: 4px; }
.combo-price {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.combo-price strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-500);
  line-height: 1;
}
.combo-price span { font-size: .78rem; font-weight: 400; }
.combo-price-light { color: rgba(255,255,255,.55); }
.combo-price-light strong { color: var(--cyan); }
.combo-price-light span { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════
   CÂMERAS
   ═══════════════════════════════════════════════ */
.cameras {
  background: linear-gradient(135deg, #EEF5FF 0%, #E4F0FF 100%);
  position: relative;
  overflow: hidden;
}
.cameras::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle,rgba(0,87,184,.08) 0%,transparent 70%);
  pointer-events: none;
}

.cameras-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cameras-content .tag { display: inline-block; }
.cameras-content .section-title { text-align: left; margin-top: 10px; }

.cameras-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 28px;
}

/* Preço câmeras */
.cameras-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: rgba(0,87,184,.08);
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}
.cameras-price span:first-child {
  font-size: .85rem;
  color: var(--muted);
}
.cameras-price strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-500);
  line-height: 1;
}
.cameras-price-note {
  font-size: .78rem;
  color: var(--muted);
  width: 100%;
}

.benefits-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-icon {
  width: 50px; height: 50px;
  background: var(--grad-primary);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-s);
}
.benefit-icon i { font-size: 1.15rem; color: var(--white); }
.benefit h4 { font-size: .975rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.benefit p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* Monitor illustration */
.cameras-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.monitor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.22));
}
.monitor-outer {
  background: #0a1628;
  border-radius: var(--radius-l);
  padding: 20px;
  border: 1px solid rgba(0,87,184,.3);
  box-shadow: 0 0 0 1px rgba(0,200,255,.08), var(--shadow-xl);
  width: 100%;
}
.monitor-screen {
  background: #060d1f;
  border-radius: var(--radius-m);
  padding: 16px;
  border: 1px solid rgba(0,87,184,.2);
}
.cam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.cam {
  aspect-ratio: 4/3;
  background: #0d1e38;
  border-radius: var(--radius-s);
  border: 1px solid rgba(0,87,184,.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s;
}
.cam::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(0,87,184,.06),rgba(0,200,255,.03));
}
.cam i    { font-size: 1.4rem; color: rgba(0,200,255,.45); position: relative; }
.cam span { font-size: .6rem; color: rgba(0,200,255,.38); font-weight: 600; letter-spacing: 1px; position: relative; }

@keyframes camBlink {
  0%,85%,100% { border-color: rgba(0,87,184,.2); }
  92%         { border-color: rgba(0,200,255,.7); box-shadow: inset 0 0 12px rgba(0,200,255,.15); }
}
.cam1 { animation: camBlink 5s ease-in-out infinite 0s;  }
.cam2 { animation: camBlink 5s ease-in-out infinite 1.2s;}
.cam3 { animation: camBlink 5s ease-in-out infinite 2.4s;}
.cam4 { animation: camBlink 5s ease-in-out infinite 3.6s;}

.monitor-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; color: rgba(0,200,255,.65);
  font-weight: 600; letter-spacing: .8px;
}
.monitor-time { margin-left: auto; }
.live-dot {
  width: 7px; height: 7px;
  background: #00FF88;
  border-radius: 50%;
  animation: liveBlink 1.5s ease-in-out infinite;
}
@keyframes liveBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: .25; }
}
.monitor-base {
  width: 80%; height: 14px;
  background: #07122a;
  border-radius: 0 0 4px 4px;
  border: 1px solid rgba(0,87,184,.2);
  border-top: none;
}
.monitor-stand {
  width: 8px; height: 38px;
  background: #07122a;
  border-radius: 0 0 4px 4px;
  border: 1px solid rgba(0,87,184,.15);
  border-top: none;
}

/* ═══════════════════════════════════════════════
   MELHOR ESCOLHA
   ═══════════════════════════════════════════════ */
.melhor { position: relative; overflow: hidden; }

.melhor-glow {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle,rgba(0,87,184,.14) 0%,transparent 68%);
  pointer-events: none;
}

.melhor-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.melhor-text .section-title { text-align: left; margin-top: 10px; }
.melhor-text p {
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.melhor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.melhor-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-m);
  padding: 28px 22px;
  transition: var(--t);
}
.melhor-card:hover {
  background: rgba(0,87,184,.12);
  border-color: rgba(0,87,184,.4);
  transform: translateY(-5px);
}

.mc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg,rgba(0,87,184,.28),rgba(0,200,255,.18));
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: var(--t);
}
.mc-icon i { font-size: 1.2rem; color: var(--cyan); }
.melhor-card:hover .mc-icon { background: var(--grad-primary); }
.melhor-card:hover .mc-icon i { color: var(--white); }

.melhor-card h4 { font-size: .975rem; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.melhor-card p  { font-size: .83rem; color: rgba(255,255,255,.48); line-height: 1.55; }

.melhor-cta { grid-column: 1/-1; text-align: center; margin-top: 8px; }

/* ═══════════════════════════════════════════════
   QUEM SOMOS
   ═══════════════════════════════════════════════ */
.sobre { background: var(--off-white); }

.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-content .section-title { text-align: left; margin-top: 10px; }
.sobre-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}
.sobre-content strong { color: var(--blue-600); }

.counters {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.counter-val {
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.counter-lbl { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* Logo with rings */
.sobre-logo-wrap {
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,87,184,.35);
  animation: ringAnim 4.5s ease-in-out infinite;
}
.r1 { width: 100%; height: 100%; animation-delay: 0s; border-color: rgba(0,87,184,.25); }
.r2 { width: 78%;  height: 78%;  border-color: rgba(0,87,184,.4);  animation-delay: .6s; }
.r3 {
  width: 56%;  height: 56%;
  border-color: rgba(0,87,184,.55);
  animation-delay: 1.2s;
  background: rgba(0,87,184,.06);
}

@keyframes ringAnim {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.07); opacity: .6; }
}

/* mix-blend-mode: multiply elimina o fundo branco do PNG
   na seção clara sem alterar as cores do logotipo */
.sobre-logo {
  position: relative; z-index: 2;
  width: 310px; height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 28px rgba(0,87,184,.28))
          contrast(1.08) saturate(1.1);
  animation: logoFloat 7s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background: var(--dark); }

.footer-body {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 60px;
}

.footer-logo-pill {
  background: transparent;
  padding: 0;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}
.footer-logo-pill img {
  height: 80px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.18)
          drop-shadow(0 2px 18px rgba(90,160,255,.6));
}

.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--t);
}
.social-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,87,184,.45);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}
.footer-col ul li + li { margin-top: 11px; }
.footer-col ul a {
  color: rgba(255,255,255,.48);
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
}
.footer-col ul a i { font-size: .65rem; transition: transform var(--t); }
.footer-col ul a:hover { color: var(--cyan); padding-left: 4px; }

.footer-contacts { display: flex; flex-direction: column; gap: 14px; }
.footer-contacts li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.52);
  font-size: .875rem;
  transition: var(--t);
}
.footer-contacts li a:hover { color: var(--white); }

.fc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  flex-shrink: 0;
  transition: var(--t);
}
.fc-icon.ig { background: rgba(225,48,108,.15); color: #E1306C; }
.fc-icon.wa { background: rgba(37,211,102,.15);  color: #25D366; }
.fc-icon.fb { background: rgba(24,119,242,.15);  color: #1877F2; }
.fc-icon.em { background: rgba(0,87,184,.15);    color: var(--cyan); }
.fc-icon.loc { background: rgba(0,87,184,.15);   color: var(--blue-400); }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-address .fc-icon { margin-top: 2px; }

.footer-contacts li a:hover .fc-icon.ig { background: #E1306C; color: var(--white); }
.footer-contacts li a:hover .fc-icon.wa { background: #25D366; color: var(--white); }
.footer-contacts li a:hover .fc-icon.fb { background: #1877F2; color: var(--white); }
.footer-contacts li a:hover .fc-icon.em { background: var(--blue-600); color: var(--white); }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--t);
  animation: fabPulse 3.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
  color: var(--white);
}
@keyframes fabPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 4px 28px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #1a1a1a;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a1a1a;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --header-h: 88px; }

  .exp-grid        { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .planos-grid     { grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; }
  .combos-grid     { grid-template-columns: 1fr 1fr; }
  .cameras-wrap    { gap: 50px; }
  .melhor-wrap     { gap: 50px; }
  .sobre-wrap      { gap: 50px; }

  .plano-popular { transform: none; }
  .plano-popular:hover { transform: translateY(-8px); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1/-1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 76px; }
  .section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-list {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(6,13,31,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 999;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-link {
    padding: 14px 32px;
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
  }
  .nav-link::after { display: none; }

  /* Hero — mobile */
  .hero-inner { padding-top: calc(var(--header-h) + 10px); min-height: auto; }
  .hero-left { padding: 32px 0 48px; align-items: center; text-align: center; max-width: 100%; }
  .hero-badge  { margin-left: auto; margin-right: auto; }
  .hero-title  { text-align: center; }
  .hero-subtitle { text-align: center; }
  .hero-cta  { justify-content: center; }
  .hero-micro { justify-content: center; }
  .hero-stats { justify-content: center; gap: 10px; }
  .stat-card  { min-width: calc(50% - 6px); }
  .nav-cta    { display: none; }

  /* Grids → single column */
  .exp-grid  { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .combos-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  .cameras-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cameras-content .section-title,
  .cameras-content .section-sub { text-align: center; }
  .cameras-content .tag { display: block; text-align: center; }

  .melhor-wrap { grid-template-columns: 1fr; gap: 44px; }
  .melhor-text .section-title { text-align: center; }
  .melhor-text p { text-align: center; }
  .melhor-text .tag { display: block; text-align: center; }

  .sobre-wrap { grid-template-columns: 1fr; gap: 44px; }
  .sobre-logo-wrap { order: -1; width: 300px; height: 300px; }
  .sobre-logo { width: 215px; }
  .sobre-content .section-title { text-align: center; }
  .sobre-content p { text-align: center; }
  .sobre-content .tag { display: block; text-align: center; }
  .counters { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { display: none; }

  .melhor-cards { grid-template-columns: 1fr; }
  .counters { flex-direction: column; gap: 24px; }

  .plano-popular { transform: none; }
}

/* ═══════════════════════════════════════════════
   TOAST DE CONFIRMAÇÃO
   ═══════════════════════════════════════════════ */
.wls-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(2,11,36,.96);
  border: 1px solid rgba(0,200,255,.3);
  color: var(--white);
  font-size: .9rem;
  line-height: 1.5;
  padding: 16px 24px;
  border-radius: var(--radius-s);
  max-width: min(480px, 90vw);
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wls-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════
   TV POR ASSINATURA
   ═══════════════════════════════════════════════ */
.tv-section { position: relative; overflow: hidden; }

.tv-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(0,87,184,.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.tv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tv-info { display: flex; flex-direction: column; gap: 24px; }

.tv-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tv-price-block > span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tv-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
}
.tv-price strong {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.tv-price span { font-size: .85rem; color: rgba(255,255,255,.4); }

.tv-desc {
  font-size: .975rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* Canais em destaque */
.tv-canais-destaque { display: flex; flex-direction: column; gap: 20px; }

.tv-canais-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}

.tv-canais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.canal-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-s);
  padding: 14px 8px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  transition: var(--t);
}
.canal-badge:hover {
  border-color: rgba(0,200,255,.4);
  background: rgba(0,200,255,.08);
}

/* Cores de canal */
.canal-globo  { border-left: 3px solid #0062B0; }
.canal-sbt    { border-left: 3px solid #F5C400; color: #F5C400; }
.canal-record { border-left: 3px solid #DC143C; color: #DC143C; }
.canal-espn   { border-left: 3px solid #D50032; color: #D50032; }
.canal-ae     { border-left: 3px solid #00B4D8; color: #00B4D8; }
.canal-tnt    { border-left: 3px solid #FF3D00; color: #FF3D00; }

.tv-ver-btn { align-self: flex-start; margin-top: 4px; }

/* Painel completo de canais */
.tv-canais-full {
  margin-top: 40px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(0,200,255,.15);
  animation: fadeInDown .4s ease;
}
.tv-canais-imgs {
  display: flex;
  flex-direction: column;
}
.tv-canais-imgs img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tv-canais-imgs img:last-child { border-bottom: none; }
.tv-fechar-btn {
  display: flex;
  margin: 16px auto;
  width: fit-content;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   PLANOS RURAIS
   ═══════════════════════════════════════════════ */

/* Hero rural */
.rural-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
  text-align: center;
}
.rural-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,87,184,.28) 0%, transparent 70%),
    linear-gradient(180deg, #020B24 0%, #030F2A 100%);
}
.rural-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rural-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.rural-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  line-height: 1.7;
}
.rural-aviso-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.2);
  padding: 8px 18px;
  border-radius: 50px;
}
.rural-aviso-hero i { color: var(--cyan); }

/* Grid planos rurais (5 cards) */
.rural-grid {
  grid-template-columns: repeat(3, minmax(0, 360px)) !important;
  row-gap: 28px;
}
.rural-grid > article:nth-child(4),
.rural-grid > article:nth-child(5) {
  grid-column: span 1;
}
/* Centralize last 2 cards */
@supports (grid-template-columns: subgrid) {
  .rural-last-row { justify-self: center; }
}

/* Bloco aviso de região */
.rural-aviso-bloco {
  margin-top: 52px;
  background: rgba(0,200,255,.06);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: var(--radius-m);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rural-aviso-bloco > i {
  font-size: 2rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.rural-aviso-bloco p {
  flex: 1;
  min-width: 220px;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* Grid diferenciais rurais */
.rural-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Responsividade TV + Rural ── */
@media (max-width: 1024px) {
  .tv-wrap { grid-template-columns: 1fr; gap: 40px; }
  .tv-ver-btn { align-self: stretch; justify-content: center; }
  .rural-grid { grid-template-columns: repeat(2, minmax(0, 380px)) !important; }
  .rural-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tv-canais-grid { grid-template-columns: repeat(3, 1fr); }
  .rural-grid { grid-template-columns: 1fr !important; max-width: 380px; margin-inline: auto; }
  .rural-aviso-bloco { flex-direction: column; text-align: center; }
  .rural-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .tv-canais-grid { grid-template-columns: repeat(2, 1fr); }
  .rural-cards-grid { grid-template-columns: 1fr; }
}
