/* ========================================
   RADAR DE GESTÃO - Landing Page Styles
   Paleta: Azul Marinho + Petróleo + Verde Limão
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-dark: #060e1a;
  --navy-mid: #0f2040;
  --teal: #0d4f6c;
  --teal-light: #1a6b8a;
  --teal-mid: #155f7a;
  --lime: #a3e635;
  --lime-soft: #84cc16;
  --lime-glow: rgba(163, 230, 53, 0.15);
  --lime-border: rgba(163, 230, 53, 0.3);
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --danger: #ef4444;
  --success: #22c55e;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
  --shadow-lime: 0 0 30px rgba(163, 230, 53, 0.2);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime-border);
}
.btn-outline:hover {
  background: var(--lime-glow);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white-08);
  color: var(--white-90);
  border: 1px solid var(--white-15);
}
.btn-ghost:hover {
  background: var(--white-15);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 20px 44px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

.pulse-btn { animation: pulse-glow 2.5s infinite; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(163, 230, 53, 0); }
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light { color: var(--lime); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-subtitle.light { color: var(--white-70); }

.highlight {
  color: var(--lime);
  position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-08);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1rem;
}
.logo strong { color: var(--lime); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 70% 50%, rgba(13, 79, 108, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(163, 230, 53, 0.05) 0%, transparent 50%),
              var(--navy-dark);
}

/* Radar Animation */
.hero-bg-animation {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.radar-ring {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: radar-pulse 4s ease-out infinite;
}

.radar-ring.r1 {
  width: 200px; height: 200px;
  border-color: rgba(163, 230, 53, 0.5);
  animation-delay: 0s;
}
.radar-ring.r2 {
  width: 350px; height: 350px;
  border-color: rgba(163, 230, 53, 0.3);
  animation-delay: 0.8s;
}
.radar-ring.r3 {
  width: 500px; height: 500px;
  border-color: rgba(163, 230, 53, 0.15);
  animation-delay: 1.6s;
}

@keyframes radar-pulse {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(to right, rgba(163,230,53,0.8), transparent);
  animation: sweep 4s linear infinite;
  border-radius: 2px;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-70);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 580px;
}
.hero-subtitle strong { color: var(--white); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-70);
  font-weight: 600;
}
.trust-item i { color: var(--lime); font-size: 0.9rem; }

/* ===== DOR SECTION ===== */
.dor {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
}
.dor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal-light), transparent);
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.dor-card {
  background: var(--navy-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.dor-card:hover {
  border-color: rgba(163, 230, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dor-icon {
  width: 52px; height: 52px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.dor-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.dor-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}

.dor-cta {
  text-align: center;
  background: rgba(163, 230, 53, 0.05);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.dor-cta p {
  font-size: 1.05rem;
  color: var(--white-70);
  margin-bottom: 20px;
}
.dor-cta strong { color: var(--white); }

/* ===== SOLUÇÃO ===== */
.solucao {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.solucao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.solucao > .container { position: relative; z-index: 1; }

.solucao-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.solucao-card {
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.solucao-card:hover {
  background: var(--white-15);
  border-color: var(--lime-border);
  transform: translateY(-4px);
}

.solucao-step {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--lime);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.solucao-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.solucao-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}

.solucao-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.solucao-badge > i {
  font-size: 2.5rem;
  color: var(--lime);
  flex-shrink: 0;
}

.solucao-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.solucao-badge span {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
}

/* ===== BENEFÍCIOS ===== */
.beneficios {
  padding: 100px 0;
  background: var(--navy);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.beneficio-card {
  background: var(--navy-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transition: var(--transition);
}
.beneficio-card:hover::before { transform: scaleX(1); }
.beneficio-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lime);
}

.beneficio-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
}
.beneficio-icon.radar { background: rgba(163,230,53,0.1); color: var(--lime); border: 2px solid var(--lime-border); }
.beneficio-icon.decisions { background: rgba(59,130,246,0.1); color: #60a5fa; border: 2px solid rgba(59,130,246,0.2); }
.beneficio-icon.cash { background: rgba(34,197,94,0.1); color: #4ade80; border: 2px solid rgba(34,197,94,0.2); }
.beneficio-icon.growth { background: rgba(168,85,247,0.1); color: #c084fc; border: 2px solid rgba(168,85,247,0.2); }

.beneficio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.beneficio-card p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 20px;
}

.beneficio-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ===== ENTREGAS ===== */
.entregas {
  padding: 100px 0;
  background: var(--navy-dark);
}

.entregas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.entregas-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entregas-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.entrega-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.1rem;
}

.entregas-list li > div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.entregas-list li > div span {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.5;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-screen {
  background: #128C7E;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 2px var(--white-08);
}

.wpp-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wpp-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1rem;
}

.wpp-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.wpp-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.wpp-messages {
  background: #ECE5DD;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 340px;
}

.wpp-msg {
  max-width: 90%;
  position: relative;
}
.wpp-msg.received { align-self: flex-start; }

.wpp-msg.received > p,
.wpp-msg-tag + p {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #111;
  line-height: 1.5;
}

.wpp-msg-tag {
  background: #075E54;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.wpp-time {
  display: block;
  font-size: 0.62rem;
  color: #888;
  text-align: right;
  margin-top: 3px;
}

.wpp-audio {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-audio i { color: #075E54; font-size: 1.2rem; }
.audio-bar {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, #075E54 60%, #ddd 60%);
  border-radius: 2px;
}
.wpp-audio span { font-size: 0.72rem; color: #888; }

.wpp-file {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-file i { color: #e11d48; font-size: 1.6rem; }
.wpp-file strong { display: block; font-size: 0.78rem; color: #111; }
.wpp-file span { font-size: 0.68rem; color: #888; }

/* ===== PÚBLICO-ALVO ===== */
.publico {
  padding: 100px 0;
  background: var(--navy);
}

.publico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.publico-sim, .publico-nao {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.publico-sim {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.publico-nao {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.publico-sim h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.publico-nao h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.publico-sim ul, .publico-nao ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.publico-sim li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
}
.publico-sim li i { color: #4ade80; flex-shrink: 0; margin-top: 3px; }

.publico-nao li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
}
.publico-nao li i { color: #f87171; flex-shrink: 0; margin-top: 3px; }

.nordeste-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(13, 79, 108, 0.3), rgba(15, 32, 64, 0.5));
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.nordeste-badge > i {
  font-size: 2rem;
  color: var(--lime);
  flex-shrink: 0;
}
.nordeste-badge p {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* ===== PROVA SOCIAL ===== */
.prova-social {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.depoimento-card {
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.depoimento-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-4px);
}

.depoimento-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depoimento-card > p {
  font-size: 0.92rem;
  color: var(--white-90);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.autor-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.depoimento-autor span {
  font-size: 0.78rem;
  color: var(--white-70);
}

.autoridade-selos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--white-15);
  padding-top: 48px;
}

.selo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.selo > i {
  font-size: 2rem;
  color: var(--lime);
}
.selo strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.selo span {
  font-size: 0.78rem;
  color: var(--white-70);
}

/* ===== PREÇO ===== */
.preco {
  padding: 100px 0;
  background: var(--navy-dark);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
}

.plano-card {
  background: var(--navy-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.plano-card:hover { border-color: rgba(163, 230, 53, 0.2); transform: translateY(-4px); }

.plano-card.destaque {
  background: linear-gradient(145deg, var(--teal), var(--navy-mid));
  border: 2px solid var(--lime);
  transform: scale(1.05);
  box-shadow: var(--shadow-lime);
}
.plano-card.destaque:hover { transform: scale(1.05) translateY(-4px); }

.plano-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plano-nome {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 20px;
}

.plano-preco { margin-bottom: 28px; }

.preco-de {
  display: block;
  font-size: 0.82rem;
  color: var(--white-40);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.preco-por {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.preco-valor {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}

.preco-periodo {
  font-size: 0.9rem;
  color: var(--white-70);
  font-weight: 600;
}

.preco-economia {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-glow);
  border: 1px solid var(--lime-border);
  padding: 3px 10px;
  border-radius: 100px;
}

.plano-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plano-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-70);
}
.plano-lista li i.fa-check { color: var(--lime); }
.plano-lista li i.fa-times { color: var(--white-40); }
.plano-lista li.item-off { opacity: 0.5; }

/* Garantia */
.garantia-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(163,230,53,0.08), rgba(163,230,53,0.03));
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}

.garantia-icon {
  width: 80px; height: 80px;
  flex-shrink: 0;
  background: var(--lime-glow);
  border: 2px solid var(--lime-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--lime);
}

.garantia-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.garantia-text p {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--navy);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--lime-border); }
.faq-item.open { border-color: var(--lime-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { color: var(--lime); }
.faq-item.open .faq-question { color: var(--lime); }

.faq-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--white-40);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--lime); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
  border-top: 1px solid var(--white-08);
  padding-top: 16px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(163,230,53,0.08) 0%, transparent 60%);
}
.cta-final > .container { position: relative; z-index: 1; }

.radar-icon-big {
  font-size: 3rem;
  color: var(--lime);
  margin-bottom: 28px;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-final > .container > p {
  font-size: 1.05rem;
  color: var(--white-70);
  margin-bottom: 40px;
  line-height: 1.65;
}

.cta-garantia {
  margin-top: 20px;
  font-size: 0.82rem !important;
  color: var(--white-70) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0 !important;
}
.cta-garantia i { color: var(--lime); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--white-08);
  padding: 48px 0 32px;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 32px; height: 32px;
  font-size: 0.9rem;
}
.footer-logo strong { color: var(--lime); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--white-70);
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--white-70);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--lime); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--white-40);
}

/* ===== WhatsApp Float ===== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wpp-bounce 3s ease infinite;
}
.wpp-float:hover {
  background: #1db954;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}
@keyframes wpp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .plano-card.destaque { transform: scale(1); }
  .plano-card.destaque:hover { transform: translateY(-4px); }

  .entregas-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .publico-grid {
    grid-template-columns: 1fr;
  }

  .hero-bg-animation {
    opacity: 0.3;
    right: -20%;
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-bg-animation { display: none; }

  .dor-grid { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .solucao-cards { grid-template-columns: 1fr; }

  .solucao-badge { flex-direction: column; text-align: center; }
  .garantia-box { flex-direction: column; text-align: center; }
  .nordeste-badge { flex-direction: column; text-align: center; }

  .autoridade-selos { gap: 24px; flex-direction: column; align-items: flex-start; }

  .section-title { font-size: 1.7rem; }

  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .btn-xl { padding: 16px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .section-title { font-size: 1.5rem; }
  .faq-question { padding: 18px 20px; font-size: 0.88rem; }
  .faq-answer p { padding: 0 20px 20px; }
}
