/* ============================================================
   NetMania Tecnologia e Serviços — style.css
   Paleta extraída das logos: azul-marinho, azul médio, azul claro
   ============================================================ */

:root {
  --navy-deep: #08243d;
  --navy: #0d3553;
  --navy-2: #0a2540;
  --navy-card: #112e4d;
  --blue: #1d7fb5;
  --blue-light: #36a9e1;
  --blue-soft: #5cc1f0;
  --white: #ffffff;
  --gray: #aac3d6;
  --gold: #f5b724;
  --gold-dark: #d99a0b;
  --green: #25d366;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(3, 17, 31, .45);
  --transition: all .35s cubic-bezier(.22, .8, .35, 1);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: 100px 0; position: relative; }

h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.18; }

.grad-text {
  background: linear-gradient(90deg, var(--blue-light), var(--blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-gold {
  background: linear-gradient(90deg, var(--gold), #ffd966);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo { width: 240px; animation: preloPulse 1.4s ease-in-out infinite; }
@keyframes preloPulse { 0%,100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }
.preloader-bar {
  width: 220px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.12); overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  animation: barSlide 1.1s ease-in-out infinite;
}
@keyframes barSlide { 0% { transform: translateX(-110%);} 100% { transform: translateX(560%);} }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(8, 36, 61, .92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 44px; width: auto; transition: var(--transition); }
.header.scrolled .logo img { height: 38px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: .92rem; font-weight: 500; color: var(--gray);
  position: relative; padding: 6px 0;
  transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-title); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(54, 169, 225, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(54, 169, 225, .5); }
.btn-ghost {
  background: rgba(255,255,255,.07); color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.btn-outline {
  border: 1.5px solid var(--blue-light); color: var(--blue-light);
  background: transparent; padding: 10px 20px; font-size: .85rem;
}
.btn-outline:hover { background: var(--blue-light); color: var(--navy-deep); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2b1d00;
  box-shadow: 0 10px 30px rgba(245, 183, 36, .35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(245, 183, 36, .5); }
.btn-plan {
  background: rgba(54, 169, 225, .12); color: var(--blue-light);
  border: 1.5px solid rgba(54, 169, 225, .4);
  width: 100%;
}
.btn-plan:hover { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); border-color: transparent; }
.btn-block { width: 100%; }

.pulse { animation: pulseBtn 2.2s infinite; }
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(54, 169, 225, .55); }
  70% { box-shadow: 0 0 0 18px rgba(54, 169, 225, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 169, 225, 0); }
}

/* ===== Menu toggle ===== */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 1100;
}
.menu-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--white); transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 0 120px;
  background: radial-gradient(ellipse at 70% 20%, #11406b 0%, var(--navy-deep) 55%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: .35;
}
.hero-glow-1 { width: 480px; height: 480px; background: var(--blue); top: -120px; right: -100px; animation: glowMove 9s ease-in-out infinite alternate; }
.hero-glow-2 { width: 380px; height: 380px; background: #0e5d8c; bottom: -120px; left: -120px; animation: glowMove 11s ease-in-out infinite alternate-reverse; }
@keyframes glowMove { from { transform: translate(0,0) scale(1);} to { transform: translate(50px, 40px) scale(1.15);} }

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 50px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(54, 169, 225, .14);
  border: 1px solid rgba(54, 169, 225, .35);
  color: var(--blue-soft);
  font-size: .85rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 22px;
}
.hero-text h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800; margin-bottom: 20px;
}
.hero-text p { color: var(--gray); font-size: 1.06rem; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat strong {
  font-family: var(--font-title); font-size: 1.7rem; font-weight: 800;
  display: block; color: var(--blue-soft);
}
.stat span { font-size: .82rem; color: var(--gray); }

/* Hero visual — router/speed card */
.hero-visual { display: flex; justify-content: center; }
.router-card { position: relative; }
.router-screen {
  width: 320px; padding: 42px 30px 34px;
  background: linear-gradient(160deg, rgba(17, 46, 77, .9), rgba(8, 36, 61, .95));
  border: 1px solid rgba(54, 169, 225, .25);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  backdrop-filter: blur(8px);
}
.speed-ring { position: relative; width: 200px; height: 200px; }
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg, .ring-fill { fill: none; stroke-width: 12; stroke-linecap: round; }
.ring-bg { stroke: rgba(255,255,255,.08); }
.ring-fill {
  stroke: var(--blue-light);
  stroke-dasharray: 534;
  stroke-dashoffset: 534;
  animation: ringFill 2.4s 1s cubic-bezier(.25,.9,.3,1) forwards;
  filter: drop-shadow(0 0 8px rgba(54,169,225,.7));
}
@keyframes ringFill { to { stroke-dashoffset: 80; } }
.ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-value { font-family: var(--font-title); font-size: 3rem; font-weight: 900; color: var(--white); }
.ring-unit { font-size: .85rem; letter-spacing: 4px; color: var(--blue-soft); font-weight: 600; }

.signal-bars { display: flex; align-items: flex-end; gap: 6px; height: 34px; }
.signal-bars span {
  width: 8px; border-radius: 4px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  animation: barBounce 1.2s ease-in-out infinite;
}
.signal-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.signal-bars span:nth-child(2) { height: 50%; animation-delay: .15s; }
.signal-bars span:nth-child(3) { height: 70%; animation-delay: .3s; }
.signal-bars span:nth-child(4) { height: 85%; animation-delay: .45s; }
.signal-bars span:nth-child(5) { height: 100%; animation-delay: .6s; }
@keyframes barBounce { 0%,100% { transform: scaleY(.55);} 50% { transform: scaleY(1);} }

.chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13, 53, 83, .92);
  border: 1px solid rgba(54, 169, 225, .35);
  padding: 10px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.chip i { color: var(--blue-soft); }
.chip-1 { top: 10px; left: -70px; }
.chip-2 { bottom: 70px; right: -80px; }
.chip-3 { bottom: -16px; left: -40px; }

.floating { animation: float 4s ease-in-out infinite; }
.floating-slow { animation: float 5.5s ease-in-out infinite; }
.floating-slower { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; }

/* ===== Section heads / tags ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin: 14px 0 14px; }
.section-head p { color: var(--gray); }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(54, 169, 225, .12);
  border: 1px solid rgba(54, 169, 225, .3);
  color: var(--blue-soft);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 7px 16px; border-radius: 50px;
}
.tag-gold {
  background: rgba(245, 183, 36, .12);
  border-color: rgba(245, 183, 36, .35);
  color: var(--gold);
}
.tag-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); }

/* ===== Copa do Mundo ===== */
.copa {
  position: relative; overflow: hidden;
  padding: 110px 0;
  background: linear-gradient(135deg, #0a2540 0%, #0d3553 50%, #123f63 100%);
}
.copa-bg { position: absolute; inset: 0; pointer-events: none; }
.copa-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.025) 60px 120px);
}
.ball { position: absolute; font-size: 2.4rem; opacity: .16; animation: ballFloat 9s ease-in-out infinite; }
.ball-1 { top: 12%; left: 6%; }
.ball-2 { bottom: 16%; right: 8%; animation-delay: 2.5s; font-size: 3.2rem; }
.ball-3 { top: 18%; right: 18%; animation-delay: 4.5s; font-size: 2.8rem; }
@keyframes ballFloat { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-30px) rotate(180deg);} }

.copa-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.copa-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; margin: 18px 0; }
.copa-text > p { color: var(--gray); margin-bottom: 26px; font-size: 1.04rem; }
.copa-list { margin-bottom: 34px; display: grid; gap: 12px; }
.copa-list li { display: flex; align-items: center; gap: 12px; color: #d7e7f2; font-weight: 500; }
.copa-list i { color: var(--gold); font-size: 1.1rem; }

/* TV mockup com campo animado */
.copa-visual { display: flex; justify-content: center; }
.tv-mock { width: min(440px, 100%); }
.tv-frame {
  background: #061a2c;
  border: 3px solid #1c4a6e;
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow), 0 0 60px rgba(54,169,225,.15);
}
.tv-screen {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #1a7a3c, #14622f);
}
.field { position: absolute; inset: 0; }
.field::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 12.5%, rgba(255,255,255,.045) 12.5% 25%);
}
.field-line { position: absolute; border: 2px solid rgba(255,255,255,.5); }
.center-circle {
  width: 70px; height: 70px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.mid-line { top: 0; bottom: 0; left: 50%; width: 0; border-width: 0 0 0 2px; }
.player {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
}
.p1 { background: #ffd200; top: 38%; left: 22%; animation: playerRun1 5s ease-in-out infinite; }
.p2 { background: #ffd200; top: 62%; left: 38%; animation: playerRun2 6s ease-in-out infinite; }
.p3 { background: #e44; top: 48%; left: 68%; animation: playerRun3 5.5s ease-in-out infinite; }
@keyframes playerRun1 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(46px, 18px);} }
@keyframes playerRun2 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(-30px, -22px);} }
@keyframes playerRun3 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(-40px, 14px);} }
.ball-anim {
  position: absolute; font-size: .9rem; top: 50%; left: 30%;
  animation: ballKick 5s ease-in-out infinite;
}
@keyframes ballKick {
  0%,100% { transform: translate(0,0);}
  25% { transform: translate(70px, -22px);}
  50% { transform: translate(130px, 10px);}
  75% { transform: translate(50px, 26px);}
}
.tv-overlay {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 6px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b;
  animation: liveDot 1.2s ease-in-out infinite;
}
@keyframes liveDot { 0%,100% { opacity: 1;} 50% { opacity: .25;} }
.score {
  background: rgba(0,0,0,.55); color: #fff;
  font-family: var(--font-title); font-weight: 800; font-size: .78rem;
  padding: 4px 12px; border-radius: 6px;
}
.tv-base {
  width: 36%; height: 12px; margin: 0 auto;
  background: linear-gradient(180deg, #1c4a6e, #0c2c47);
  border-radius: 0 0 12px 12px;
}

/* ===== Planos ===== */
.plans { background: var(--navy-2); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}
.plan-card {
  position: relative;
  background: linear-gradient(165deg, var(--navy-card), #0c2742);
  border: 1px solid rgba(54, 169, 225, .18);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(54, 169, 225, .55);
  box-shadow: 0 24px 60px rgba(3, 17, 31, .6);
}
.plan-featured {
  background: linear-gradient(165deg, #14436b, #0d3052);
  border-color: var(--blue-light);
  box-shadow: 0 18px 60px rgba(54, 169, 225, .22);
  transform: scale(1.04);
}
.plan-featured:hover { transform: scale(1.04) translateY(-10px); }
.plan-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2b1d00; font-family: var(--font-title); font-weight: 800; font-size: .74rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.plan-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(54, 169, 225, .14);
  color: var(--blue-soft); font-size: 1.6rem;
  margin-bottom: 20px;
}
.plan-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }
.plan-speed {
  font-family: var(--font-title); font-weight: 900;
  font-size: 4rem; color: var(--white);
  margin: 6px 0 22px; line-height: 1;
}
.plan-speed small {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-left: 4px;
}
.plan-card ul { display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan-card ul li { display: flex; align-items: center; gap: 10px; color: #cfe1ee; font-size: .93rem; }
.plan-card ul i { color: var(--blue-light); font-size: .85rem; }
.plans-note {
  text-align: center; margin-top: 44px; color: var(--gray); font-size: .9rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.plans-note i { color: var(--blue-light); }

/* ===== Streaming ===== */
.streaming { background: var(--navy-deep); overflow: hidden; }
.streaming-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 60px; align-items: center;
}
.streaming-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; margin: 16px 0; }
.streaming-text > p { color: var(--gray); margin-bottom: 28px; }
.features-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.fm {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  padding: 14px 18px; border-radius: 14px;
  font-weight: 600; font-size: .92rem;
  transition: var(--transition);
}
.fm:hover { background: rgba(54,169,225,.12); border-color: rgba(54,169,225,.4); transform: translateY(-3px); }
.fm i { color: var(--blue-soft); font-size: 1.15rem; }

.screens { position: relative; height: 420px; }
.stream-pulse {
  position: absolute; top: 50%; left: 50%;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-light);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--blue-light);
}
.stream-pulse::before, .stream-pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(54,169,225,.55);
  animation: streamRipple 2.6s linear infinite;
}
.stream-pulse::after { animation-delay: 1.3s; }
@keyframes streamRipple {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(14); opacity: 0; }
}
.screen {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(160deg, var(--navy-card), #0b2540);
  border: 1px solid rgba(54, 169, 225, .3);
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 600; font-size: .82rem; color: var(--gray);
  z-index: 2;
}
.screen i { font-size: 2.2rem; color: var(--blue-soft); }
.screen-tv { width: 200px; height: 140px; top: 6%; left: 6%; }
.screen-phone { width: 110px; height: 180px; bottom: 8%; left: 16%; }
.screen-tablet { width: 170px; height: 130px; top: 28%; right: 4%; }

/* ===== Tools ===== */
.tools { background: var(--navy-2); padding: 70px 0; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tool-card {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(160deg, var(--navy-card), #0c2742);
  border: 1px solid rgba(54, 169, 225, .18);
  border-radius: var(--radius);
  padding: 30px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.06), transparent);
  transition: left .6s ease;
}
.tool-card:hover::before { left: 130%; }
.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 169, 225, .55);
  box-shadow: 0 20px 50px rgba(3, 17, 31, .55);
}
.tool-icon {
  flex-shrink: 0;
  width: 66px; height: 66px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 10px 26px rgba(54,169,225,.35);
}
.tool-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 6px; }
.tool-card p { color: var(--gray); font-size: .9rem; }
.tool-arrow { margin-left: auto; color: var(--blue-soft); font-size: 1rem; transition: var(--transition); }
.tool-card:hover .tool-arrow { transform: translate(4px, -4px); }

/* ===== App ===== */
.app { background: var(--navy-deep); }
.app-card {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
  background: linear-gradient(135deg, #0f3a5f, #0a2540);
  border: 1px solid rgba(54, 169, 225, .25);
  border-radius: 28px;
  padding: 60px;
  position: relative; overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(54,169,225,.18), transparent 70%);
  top: -160px; right: -120px;
}
.app-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; margin: 16px 0; }
.app-text p { color: var(--gray); margin-bottom: 30px; max-width: 480px; }
.store-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 22px; border-radius: 14px;
  transition: var(--transition);
}
.store-badge i { font-size: 1.9rem; }
.store-badge small { display: block; font-size: .68rem; color: var(--gray); letter-spacing: .5px; }
.store-badge strong { font-family: var(--font-title); font-size: 1.05rem; }
.store-badge.soon { position: relative; cursor: default; }
.store-badge.soon:hover { border-color: var(--blue-light); transform: translateY(-3px); }

.app-visual { display: flex; justify-content: center; position: relative; z-index: 2; }
.phone-mock {
  width: 220px; border-radius: 34px;
  background: #061a2c;
  border: 3px solid #1c4a6e;
  padding: 14px 12px;
  box-shadow: var(--shadow), 0 0 60px rgba(54,169,225,.12);
  position: relative;
}
.phone-notch {
  width: 90px; height: 18px; border-radius: 0 0 14px 14px;
  background: #061a2c;
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.phone-screen {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(170deg, #0d3553, #08243d);
  padding: 40px 18px 30px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative;
}
.phone-logo { width: 130px; margin-bottom: 8px; }
.phone-line { height: 9px; border-radius: 6px; background: rgba(255,255,255,.12); }
.w80 { width: 80%; } .w60 { width: 60%; }
.phone-btns { display: flex; gap: 12px; margin-top: 10px; }
.phone-btn {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(54,169,225,.16);
  color: var(--blue-soft); font-size: 1.05rem;
}
.soon-tag {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2b1d00;
  font-family: var(--font-title); font-weight: 800; font-size: .68rem; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 50px;
  animation: soonBlink 2s ease-in-out infinite;
}
@keyframes soonBlink { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .75; transform: scale(.96);} }

/* ===== Depoimentos ===== */
.testimonials { background: var(--navy-2); }
.testi-slider { max-width: 820px; margin: 0 auto; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.9,.3,1);
}
.testi-card {
  flex: 0 0 100%;
  background: linear-gradient(160deg, var(--navy-card), #0c2742);
  border: 1px solid rgba(54,169,225,.2);
  border-radius: var(--radius);
  padding: 44px 48px;
  text-align: center;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; display: flex; gap: 5px; justify-content: center; }
.testi-card p { font-size: 1.08rem; color: #dcebf5; font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-family: var(--font-title); font-weight: 800; font-size: .95rem;
}
.testi-author strong { display: block; font-family: var(--font-title); }
.testi-author span { font-size: .82rem; color: var(--gray); }
.testi-author > div { text-align: left; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 32px; }
.testi-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(54,169,225,.4);
  background: rgba(54,169,225,.1);
  color: var(--blue-soft); font-size: .95rem;
  cursor: pointer; transition: var(--transition);
}
.testi-btn:hover { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); }
.testi-dots { display: flex; gap: 9px; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: none; cursor: pointer; padding: 0;
  transition: var(--transition);
}
.testi-dot.active { background: var(--blue-light); width: 28px; border-radius: 6px; }

/* ===== Contato / Mapa ===== */
.contact { background: var(--navy-deep); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: linear-gradient(160deg, var(--navy-card), #0c2742);
  border: 1px solid rgba(54,169,225,.18);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(54,169,225,.5); transform: translateX(6px); }
.info-card > i {
  font-size: 1.35rem; color: var(--blue-soft);
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(54,169,225,.13);
}
.info-card strong { font-family: var(--font-title); display: block; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--gray); font-size: .93rem; }
.info-card a:hover { color: var(--blue-soft); }
.contact-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(54,169,225,.25);
  box-shadow: var(--shadow);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.9); }

/* ===== Footer ===== */
.footer { background: #051726; padding: 70px 0 0; border-top: 1px solid rgba(54,169,225,.12); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px; padding-bottom: 50px;
}
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p { color: var(--gray); font-size: .9rem; max-width: 300px; }
.footer-col h4 {
  font-size: .95rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue-soft); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: var(--gray); font-size: .9rem;
  padding: 5px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--white); transform: translateX(5px); }
.footer-col p { color: var(--gray); font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; text-align: center;
  color: var(--gray); font-size: .82rem;
}
.footer-dev { margin-top: 6px; }
.footer-dev a { color: var(--blue-soft); font-weight: 600; transition: var(--transition); }
.footer-dev a:hover { color: var(--white); }

/* ===== WhatsApp flutuante ===== */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 990; }
.wa-btn {
  position: relative;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2bdc6e, #1ab854);
  color: #fff; font-size: 2rem;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
  transition: var(--transition);
}
.wa-btn:hover { transform: scale(1.1) rotate(8deg); }
.wa-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .7);
  animation: waRing 2s ease-out infinite;
}
@keyframes waRing { from { transform: scale(1); opacity: 1;} to { transform: scale(1.7); opacity: 0;} }
.wa-balloon {
  position: absolute; bottom: 76px; right: 0;
  width: 230px;
  background: #fff; color: #15334b;
  border-radius: 16px 16px 4px 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 44px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(14px) scale(.92);
  transform-origin: bottom right;
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
}
.wa-balloon.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-balloon::after {
  content: '';
  position: absolute; bottom: -8px; right: 22px;
  border: 9px solid transparent;
  border-top-color: #fff; border-right-color: #fff;
}
.wa-balloon strong { font-family: var(--font-title); font-size: .92rem; display: block; margin-bottom: 4px; }
.wa-balloon p { font-size: .82rem; line-height: 1.45; color: #41607a; }
.wa-balloon-close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: #8aa4b8; line-height: 1;
}
.wa-balloon-close:hover { color: #15334b; }

/* ===== Voltar ao topo ===== */
.back-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 980;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(54,169,225,.4);
  background: rgba(13, 53, 83, .9);
  color: var(--blue-soft); font-size: 1rem;
  cursor: pointer; backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; }

/* ===== Animações de scroll ===== */
[data-animate] {
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.35,1);
  will-change: opacity, transform;
}
[data-animate="fade-up"] { transform: translateY(50px); }
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="fade-left"] { transform: translateX(60px); }
[data-animate="zoom-in"] { transform: scale(.88); }
[data-animate].visible { opacity: 1; transform: translate(0,0) scale(1); }

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .hero-content, .copa-grid, .streaming-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 30px; }
  .chip-1 { left: -10px; } .chip-2 { right: -10px; } .chip-3 { left: 0; }
  .copa-visual { order: -1; }
  .app-card { grid-template-columns: 1fr; padding: 46px 36px; text-align: center; }
  .app-text p { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .screens { height: 360px; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0;
    background: rgba(6, 23, 38, .98);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center;
    gap: 30px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 1050;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav-link { font-size: 1.2rem; }
  .menu-toggle { display: flex; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan-featured { transform: scale(1); }
  .plan-featured:hover { transform: translateY(-10px); }
  .tools-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .section { padding: 70px 0; }
}

@media (max-width: 520px) {
  .hero { padding: 120px 0 100px; }
  .hero-text h1 { font-size: 1.9rem; }
  .router-screen { width: 270px; padding: 32px 22px 26px; }
  .speed-ring { width: 165px; height: 165px; }
  .ring-value { font-size: 2.4rem; }
  .chip { font-size: .7rem; padding: 8px 12px; }
  .chip-2 { right: -4px; bottom: 50px; }
  .testi-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .app-card { padding: 38px 24px; }
  .features-mini { grid-template-columns: 1fr; }
  .wa-balloon { width: 200px; }
  .back-top { display: none; }
}
