/* ============================================
   MSBVida - style.css
   Marins Saúde Benefícios e Vida
   ============================================ */

:root {
  --blue: #0F67B1;
  --blue-dark: #0a4f8c;
  --blue-light: #e8f2fc;
  --green: #18B888;
  --green-dark: #12956d;
  --green-light: #e4f8f2;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --grad-main: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  --grad-light: linear-gradient(135deg, #e8f2fc 0%, #e4f8f2 100%);
  --shadow-sm: 0 2px 8px rgba(15, 103, 177, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 103, 177, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 103, 177, 0.16);
  --shadow-xl: 0 32px 80px rgba(15, 103, 177, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Sora', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', 'Sora', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography Utilities ── */
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #7ec8f8 0%, #5ee9c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-main);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(15, 103, 177, 0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 103, 177, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-badge {
  display: inline-block;
  background: var(--grad-light);
  color: var(--blue);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 103, 177, 0.15);
}
.section-badge.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}
.section-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Glass utilities ── */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.glass-card-sm {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(15,103,177,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-800);
  letter-spacing: -0.02em;
}
.logo-main strong { font-weight: 700; color: var(--blue); }
.logo-sub {
  font-size: 0.67rem;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-whatsapp-header:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24,184,136,0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fffe 50%, #f0fdf7 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,103,177,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,103,177,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15,103,177,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(24,184,136,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 30px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24,184,136,0.1);
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(24,184,136,0.25);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--blue); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-main {
  padding: 32px;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.card-icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.savings-display {
  text-align: center;
  margin-bottom: 24px;
}
.savings-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
.savings-counter {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.savings-period {
  font-size: 0.82rem;
  color: var(--gray-400);
  display: block;
  margin-top: 4px;
}

.savings-bar-wrap { }
.savings-bar-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}
.savings-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-main);
  border-radius: 50px;
  transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.savings-bar-label {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* Floating cards */
.hero-card-float {
  position: absolute;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-float-1 {
  top: -20px;
  right: -20px;
  animation: floatCard1 4s ease-in-out infinite;
}
.hero-card-float-2 {
  bottom: 40px;
  right: -40px;
  animation: floatCard2 5s ease-in-out infinite;
}
.hero-card-float-3 {
  bottom: -20px;
  left: -30px;
  animation: floatCard3 4.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon.green { background: rgba(24,184,136,0.12); color: var(--green); }
.float-icon.blue { background: rgba(15,103,177,0.12); color: var(--blue); }
.float-title { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }
.float-value { font-family: var(--font); font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }

/* ============================================
   TRIGGERS
   ============================================ */
.triggers-section {
  padding: 80px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.triggers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,103,177,0.3) 0%, rgba(24,184,136,0.2) 100%);
}
.triggers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trigger-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.trigger-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.trigger-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}
.trigger-item h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.trigger-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--grad-main);
  color: white;
}
.benefit-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.benefit-tag {
  display: inline-block;
  background: var(--grad-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(15,103,177,0.15);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 100px 0;
  background: var(--white);
}
.steps-wrap { position: relative; }
.steps-line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 44px);
  right: calc(12.5% + 44px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  z-index: 0;
}
.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 6px;
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  width: 100%;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}
.step-card h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   OPERATORS
   ============================================ */
.operators-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Base card */
.operator-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.operator-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition);
}
.operator-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.operator-card:hover::after { opacity: 1; }

/* Leve Saúde — verde/teal */
.op-leve { border-color: rgba(0,164,153,0.2); }
.op-leve:hover { border-color: #00A499; box-shadow: 0 20px 60px rgba(0,164,153,0.18); }
.op-leve::after { background: linear-gradient(90deg, #00A499, #00c4b8); }

/* MedSênior — roxo/violeta */
.op-medsenior { border-color: rgba(106,27,154,0.15); }
.op-medsenior:hover { border-color: #6A1B9A; box-shadow: 0 20px 60px rgba(106,27,154,0.15); }
.op-medsenior::after { background: linear-gradient(90deg, #6A1B9A, #9c27b0); }

/* Amil — vermelho */
.op-amil { border-color: rgba(232,49,42,0.15); }
.op-amil:hover { border-color: #E8312A; box-shadow: 0 20px 60px rgba(232,49,42,0.15); }
.op-amil::after { background: linear-gradient(90deg, #E8312A, #ff5c56); }

/* Hapvida — azul */
.op-hapvida { border-color: rgba(0,104,181,0.15); }
.op-hapvida:hover { border-color: #0068B5; box-shadow: 0 20px 60px rgba(0,104,181,0.15); }
.op-hapvida::after { background: linear-gradient(90deg, #0068B5, #0095d9); }

/* Logo image */
.op-logo-wrap {
  margin-bottom: 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.op-logo-img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}
.operator-card:hover .op-logo-img { transform: scale(1.04); }

/* Amil SVG logo */
.op-logo-amil-svg {
  height: 56px;
  width: 160px;
}

/* Fallback text logo */
.op-logo-fallback {
  align-items: center;
  justify-content: center;
}
.op-logo-text {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.op-logo-text span { opacity: 0.75; font-weight: 400; }
.op-logo-text.leve { color: #00A499; }
.op-logo-text.medsenior { color: #6A1B9A; }
.op-logo-text.amil { color: #E8312A; }
.op-logo-text.hapvida { color: #0068B5; }

.operator-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Colored tags per brand */
.op-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.op-tag-leve   { background: rgba(0,164,153,0.1); color: #00776e; border: 1px solid rgba(0,164,153,0.25); }
.op-tag-medsenior { background: rgba(106,27,154,0.08); color: #6A1B9A; border: 1px solid rgba(106,27,154,0.2); }
.op-tag-amil   { background: rgba(232,49,42,0.08); color: #c0251f; border: 1px solid rgba(232,49,42,0.2); }
.op-tag-hapvida { background: rgba(0,104,181,0.08); color: #0055a0; border: 1px solid rgba(0,104,181,0.2); }

/* ── WhatsApp Group Banner ── */
.wa-group-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0a3d1a 0%, #075e2b 100%);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.15);
}
.wa-group-icon {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.wa-group-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wa-group-text strong {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.wa-group-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.wa-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.wa-group-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card.featured {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured:hover { transform: translateY(-12px); }

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-main);
  color: white;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.testimonial-savings {
  display: inline-block;
  background: rgba(24,184,136,0.1);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(24,184,136,0.2);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--gray-900);
}
.form-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1628 0%, #0d2340 50%, #0a1a14 100%);
}
.form-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.form-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(15,103,177,0.25);
  top: -200px;
  left: -100px;
}
.form-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(24,184,136,0.2);
  bottom: -150px;
  right: -100px;
}
.form-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.form-content { color: white; }
.form-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 16px 0;
  letter-spacing: -0.03em;
}
.form-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.form-checklist svg { color: var(--green); flex-shrink: 0; }

.glass-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.glass-form h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.glass-form > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.field-group input::placeholder { color: rgba(255,255,255,0.3); }
.field-group select option { background: #1e293b; color: white; }
.field-group input:focus,
.field-group select:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(15,103,177,0.2);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--green);
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(24,184,136,0.4);
}
.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(24,184,136,0.5);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--gray-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a3d62 50%, var(--green-dark) 100%);
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  right: -200px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.cta-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 12px 36px rgba(24,184,136,0.4);
}
.btn-cta-final:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(24,184,136,0.5);
}
.cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 340px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.footer-legal { font-size: 0.72rem !important; }

/* footer logo colors */
.footer-logo .logo-main { color: rgba(255,255,255,0.85); }
.footer-logo .logo-main strong { color: var(--green); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.3); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  overflow: visible;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}
.whatsapp-float-text { white-space: nowrap; }
.whatsapp-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .operators-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card.featured { transform: none; }
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .triggers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 20px; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .btn-whatsapp-header { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }

  .triggers-section { padding: 60px 0; }
  .triggers-grid { grid-template-columns: 1fr; gap: 16px; }

  .benefits-section, .how-section, .operators-section, .testimonials-section, .faq-section { padding: 72px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .operators-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .wa-group-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .wa-group-btn { width: 100%; justify-content: center; }

  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-content { order: 2; }
  .glass-form { order: 1; padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .whatsapp-float-text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .glass-form { padding: 24px 16px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .operators-grid { grid-template-columns: 1fr; }
}