/* =====================================================
   ROTRACK MONITORAMENTO - Estilos
   ===================================================== */
:root {
  --orange: #FF6B1A;
  --orange-dark: #E85A0F;
  --orange-light: #FF8A47;
  --dark: #0F1724;
  --dark-2: #1A2332;
  --dark-3: #243043;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,.15);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: .3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; color: var(--dark); line-height: 1.2; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-orange { color: var(--orange); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,107,26,.35);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,26,.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--block { width: 100%; }

/* ==================== TOPBAR ==================== */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 22px; }
.topbar__right a:hover { color: var(--orange); }
.topbar i { color: var(--orange); margin-right: 6px; }

/* ==================== HEADER ==================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo img { height: 56px; width: auto; }
.nav__list { display: flex; gap: 28px; }
.nav__list a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark-2);
  position: relative;
  padding: 6px 0;
}
.nav__list a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width var(--transition);
}
.nav__list a:hover { color: var(--orange); }
.nav__list a:hover::after { width: 100%; }
.nav__toggle, .nav__close {
  display: none; background: none; border: none;
  font-size: 24px; color: var(--dark); cursor: pointer;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1724 0%, #1A2332 60%, #243043 100%);
  color: #fff;
  padding: 80px 0 100px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,107,26,.25), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,107,26,.12), transparent 40%);
  pointer-events: none;
}
/* Hero - malha de coordenadas estilo radar */
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 60px 60px, 60px 60px; }
}
/* GPS dots animados no fundo do hero */
.hero__dots { position: absolute; inset: 0; pointer-events: none; }
.gps-dot {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,107,26,.6);
  animation: gpsPing 2.6s ease-out infinite;
  animation-delay: var(--d);
}
@keyframes gpsPing {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,26,.6); transform: scale(.6); opacity: .9; }
  70%  { box-shadow: 0 0 0 24px rgba(255,107,26,0); transform: scale(1); opacity: .6; }
  100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); transform: scale(.6); opacity: 0; }
}
/* Linha de scan animada */
.hero__scan-line {
  position: absolute;
  left: 0; right: 0; bottom: 20%;
  width: 100%; height: 80px;
  opacity: .6;
  pointer-events: none;
}
.hero__scan-line path {
  stroke-dasharray: 6 8;
  animation: dashRun 4s linear infinite;
}
@keyframes dashRun { to { stroke-dashoffset: -200; } }
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,26,.15);
  color: var(--orange-light);
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,107,26,.3);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero__text { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 30px; max-width: 540px; }
.hero__price {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px; border-radius: var(--radius);
  margin-bottom: 28px; backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.hero__price-label { display:block; font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero__price strong { font-family: 'Montserrat'; font-size: 26px; color: #fff; display: block; }
.hero__price small { font-size: 14px; color: var(--orange-light); font-weight: 600; }
.hero__price-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__badges { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__badges li { font-size: 14px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.hero__badges i { color: #4ade80; }

/* Hero visual */
.hero__visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.hero__phone {
  width: 260px; height: 460px;
  background: linear-gradient(145deg, #1a2332, #0f1724);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.05);
  position: relative;
}
.hero__phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #243043, #1a2332);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.map-mock {
  width: 100%; height: 75%;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255,107,26,.08) 49%, rgba(255,107,26,.08) 51%, transparent 52%),
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,.04) 49%, rgba(255,255,255,.04) 51%, transparent 52%),
    radial-gradient(circle at 50% 60%, rgba(255,107,26,.2), transparent 60%),
    #1a2332;
  background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.map-pin {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  box-shadow: 0 0 0 8px rgba(255,107,26,.2), 0 0 0 16px rgba(255,107,26,.1);
  z-index: 2;
  animation: pulsePin 2s infinite;
}
@keyframes pulsePin {
  0%,100% { box-shadow: 0 0 0 8px rgba(255,107,26,.2), 0 0 0 16px rgba(255,107,26,.1); }
  50% { box-shadow: 0 0 0 14px rgba(255,107,26,.15), 0 0 0 26px rgba(255,107,26,.05); }
}
.map-radar {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255,107,26,.3);
  animation: radar 3s infinite;
}
@keyframes radar {
  0% { transform: scale(.3); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero__phone-card {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
}
.hero__phone-card strong { font-size: 14px; color: var(--dark); display: block; }
.hero__phone-card small { font-size: 11px; color: var(--gray); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--on { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); }

.hero__float {
  position: absolute;
  background: #fff;
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero__float i { color: var(--orange); }
.hero__float--1 { top: 30px; left: -10px; animation-delay: 0s; }
.hero__float--2 { top: 40%; right: -20px; animation-delay: 1s; }
.hero__float--3 { bottom: 40px; left: 0; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==================== TRUST ==================== */
.trust {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-light);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  text-align: center;
}
.trust__grid > div {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dark-2); font-weight: 600; font-size: 14px;
}
.trust__grid i { font-size: 26px; color: var(--orange); }

/* ==================== SECTION ==================== */
.section { padding: 90px 0; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2 { color: #fff; }
.section--gradient { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: #fff; }
.section__eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section__head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section__head p { color: var(--gray); font-size: 17px; }
.section__head--light .section__eyebrow { color: rgba(255,255,255,.9); }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255,255,255,.9); }

/* ==================== SOBRE ==================== */
.sobre__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.sobre__img {
  background: linear-gradient(135deg, var(--gray-light), #fff);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.sobre__img img { max-width: 280px; filter: drop-shadow(0 20px 30px rgba(255,107,26,.2)); }
.sobre__content h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 18px; }
.sobre__content p { color: var(--gray); margin-bottom: 16px; font-size: 16px; }
.sobre__list { margin: 24px 0 30px; }
.sobre__list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; color: var(--dark-2); font-weight: 500; }
.sobre__list i { color: var(--orange); font-size: 18px; }

/* ==================== CARDS (serviços) ==================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 20px 50px rgba(255,107,26,.2); }
.card__icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(255,107,26,.3);
}
.card h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.card p { color: rgba(255,255,255,.7); font-size: 14.5px; }

/* ==================== FEATURES ==================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  display: flex; gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature:hover { box-shadow: var(--shadow); border-color: rgba(255,107,26,.3); transform: translateY(-4px); }
.feature__icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: rgba(255,107,26,.1);
  color: var(--orange);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--gray); font-size: 14.5px; }
.feature small { display: block; margin-top: 4px; font-size: 12px; color: var(--gray); }

/* ==================== STEPS ==================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 30px 24px;
  backdrop-filter: blur(8px);
  position: relative;
}
.step__num {
  width: 50px; height: 50px;
  background: #fff; color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat'; font-weight: 900; font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}
.step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.9); font-size: 14.5px; }

/* ==================== PLANS ==================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan {
  background: #fff;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan h3 { font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.plan__desc { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.plan__price {
  font-family: 'Montserrat'; font-weight: 900;
  font-size: 56px; color: var(--dark);
  margin-bottom: 24px; line-height: 1;
}
.plan__price small { font-size: 22px; vertical-align: top; color: var(--gray); margin-right: 4px; }
.plan__price span { font-size: 28px; }
.plan__price sub { font-size: 14px; color: var(--gray); font-weight: 500; }
.plan__price--custom { font-size: 30px; color: var(--orange); }
.plan__price--custom span { font-size: 30px; color: var(--gray); font-weight: 600; }
.plan ul { text-align: left; margin-bottom: 28px; }
.plan ul li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--dark-2); }
.plan ul i { color: #22c55e; }
.plan--featured {
  background: linear-gradient(180deg, #0F1724, #1A2332);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(15,23,36,.25);
}
.plan--featured h3, .plan--featured .plan__price { color: #fff; }
.plan--featured .plan__desc, .plan--featured ul li { color: rgba(255,255,255,.85); }
.plan--featured .plan__price small, .plan--featured .plan__price sub { color: rgba(255,255,255,.7); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.plans__note {
  text-align: center; margin-top: 36px;
  background: rgba(255,107,26,.08); color: var(--dark-2);
  padding: 16px 24px; border-radius: var(--radius);
  font-size: 15px;
}
.plans__note i { color: var(--orange); margin-right: 6px; }

/* ==================== INDICAÇÃO ==================== */
.indicacao { background: var(--gray-light); }
.indicacao__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.indicacao h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.indicacao__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0 28px; }
.ind-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.ind-card:hover { transform: translateY(-4px); }
.ind-card i { font-size: 28px; color: var(--orange); margin-bottom: 10px; display: block; }
.ind-card strong { display: block; font-family: 'Montserrat'; font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.ind-card span { font-size: 13px; color: var(--gray); }
.ind-card--gold {
  background: linear-gradient(135deg, #FFA940, var(--orange));
}
.ind-card--gold i, .ind-card--gold strong, .ind-card--gold span { color: #fff; }
.indicacao__visual { display: flex; justify-content: center; }
.gift {
  width: 260px; height: 260px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 100px;
  box-shadow: 0 30px 60px rgba(255,107,26,.4);
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ==================== FAQ ==================== */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] { border-color: var(--orange); box-shadow: var(--shadow); }
.faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-family: 'Montserrat';
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 28px; font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 24px 22px; color: var(--gray); font-size: 15px; }

/* ==================== CTA ==================== */
.cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,107,26,.2), transparent 60%);
}
.cta__inner { text-align: center; color: #fff; position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 30px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================== CONTATO ==================== */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contato h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; }
.contato > div > p { color: var(--gray); margin-bottom: 28px; font-size: 16px; }
.contato__list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-light); }
.contato__list li:last-child { border-bottom: none; }
.contato__list i {
  width: 46px; height: 46px;
  background: rgba(255,107,26,.1);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contato__list strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.contato__list a, .contato__list span { color: var(--gray); font-size: 15px; }
.contato__list a:hover { color: var(--orange); }

.contato__form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.contato__form h3 { font-size: 22px; margin-bottom: 24px; color: var(--dark); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contato__form label {
  display: block; margin-bottom: 16px;
}
.contato__form label span {
  display: block; font-size: 13px; font-weight: 600; color: var(--dark-2); margin-bottom: 6px;
}
.contato__form input, .contato__form select, .contato__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-family: inherit; font-size: 15px;
  background: var(--gray-light);
  transition: all var(--transition);
}
.contato__form input:focus, .contato__form select:focus, .contato__form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,26,.15);
}
.form__note { display: block; margin-top: 12px; text-align: center; color: var(--gray); font-size: 12.5px; }

/* ==================== FOOTER ==================== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer__logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer__grid h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__grid ul li { padding: 6px 0; font-size: 14.5px; }
.footer__grid ul li i { color: var(--orange); margin-right: 8px; }
.footer__grid a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__bottom a { color: var(--orange); font-weight: 600; }
.footer__bottom a:hover { color: var(--orange-light); }

/* ==================== WHATSAPP FLOAT ==================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  transition: transform var(--transition);
  animation: pulseWa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulseWa {
  0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .hero__inner, .sobre__grid, .contato__grid, .indicacao__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 420px; }
  .cards, .features, .plans, .steps, .indicacao__cards { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .plan--featured { transform: none; }

  .header__cta { display: none; }
  .nav__toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--dark);
    padding: 80px 30px 30px;
    transition: right .35s ease;
    z-index: 200;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__list a { color: #fff; padding: 16px 0; display: block; font-size: 16px; }
  .nav__close { display: block; position: absolute; top: 20px; right: 20px; color: #fff; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .cards, .features, .plans, .steps, .indicacao__cards, .form__row { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__left { display: none; }
  .topbar__right { width: 100%; justify-content: center; gap: 16px; font-size: 12px; }
  .hero__price { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__price-sep { display: none; }
  .gift { width: 200px; height: 200px; font-size: 72px; }
  .wa-float { width: 54px; height: 54px; font-size: 28px; bottom: 18px; right: 18px; }
  .contato__form { padding: 24px; }
}

/* ==================== STATS ANIMADAS ==================== */
.stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,107,26,.18), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(255,107,26,.12), transparent 35%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stats__item { text-align: center; color: #fff; padding: 20px 10px; position: relative; }
.stats__icon {
  width: 70px; height: 70px;
  margin: 0 auto 14px;
  background: rgba(255,107,26,.15);
  border: 2px solid rgba(255,107,26,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 28px;
  position: relative;
}
.stats__pulse {
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: statsPulse 2s ease-out infinite;
}
@keyframes statsPulse {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.stats__num {
  display: block;
  font-family: 'Montserrat';
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__item span { color: rgba(255,255,255,.75); font-size: 14.5px; font-weight: 500; }

/* ==================== ÁREAS ATENDIDAS ==================== */
.areas { background: linear-gradient(180deg, #fff 0%, #FFF7F1 100%); }
.areas__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.areas__map {
  background: #fff;
  border: 1px solid rgba(255,107,26,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.areas__map::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,107,26,.12), transparent);
  animation: mapShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mapShine { to { left: 100%; } }
.areas__map svg { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.areas__list h3 { font-size: 22px; margin-bottom: 16px; }
.areas__list ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 16px; margin-bottom: 20px; }
.areas__list li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--dark-2); font-weight: 500; padding: 6px 0; }
.areas__list i { color: var(--orange); }
.areas__note {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray);
  box-shadow: var(--shadow);
}
.areas__note i { color: var(--orange); margin-right: 6px; }
.areas__note a { color: var(--orange); font-weight: 700; }

/* ==================== ANIMAÇÕES EXTRAS ==================== */
.card:hover .card__icon { animation: iconBeat 1s ease infinite; }
@keyframes iconBeat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.feature__icon { position: relative; overflow: hidden; }
.feature:hover .feature__icon::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,107,26,.4), transparent 70%);
  animation: ripple .8s ease-out;
}
@keyframes ripple { from { transform: scale(0); opacity: 1; } to { transform: scale(2.5); opacity: 0; } }

@media (max-width: 991px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats__num { font-size: 38px; }
  .areas__grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__num { font-size: 32px; }
  .stats__icon { width: 56px; height: 56px; font-size: 22px; }
  .areas__list ul { grid-template-columns: 1fr; }
  .hero__scan-line { display: none; }
}

/* === HEADER ACTIONS / LOGIN === */
.header__actions { display: flex; align-items: center; gap: 10px; }
.header__login { padding: 9px 16px; font-size: 13.5px; }
.header__login i { color: var(--orange); }
.header__login:hover i { color: #fff; }
.nav__divider { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 991px) {
  .header__actions .header__login { display: none; }
}

/* Mostra link "Area do cliente" no nav SOMENTE no mobile (drawer) */
.nav__divider { display: none; }
@media (max-width: 991px) {
  .nav__divider { display: block; }
}
