/* style.css
   Refatorado para Layout Branco Nativo.
   - Removidos fundos escuros/gradientes de seções estruturais (hero, planos, adesão, CTA, footer, cookie-bar, callback, top-bar, atendimento-header).
   - Cartões e componentes agora usam tokens de surfaces (bg-body / bg-alt / bg-soft / bg-elevated) e escala de texto.
   - Eliminado bloco massivo de WHITE LAYOUT OVERRIDES redundante.
   - Gradientes mantidos apenas em pequenos acentos (badges, ícones circulares, bordas decorativas), nunca como fundo de página inteira.
   - Foco: reduzir cascata, remover !important e consolidar semântica.
*/

/* Reset / Base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-body);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* =========================================================
   Unified Button System (v1)
========================================================= */

:where(.btn,
.btn-cta,
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-cta-primary,
.btn-cta-secondary,
.btn-submit,
.btn-whatsapp,
.btn-prev,
.btn-next,
.btn-success) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .85rem;
  line-height: 1;
  padding: 14px 26px;
  min-height: 48px; /* Acessibilidade: Touch target mínimo */
  min-width: 48px; /* Acessibilidade: Touch target mínimo */
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--primary-color);
  color: #fff;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.20);
  -webkit-tap-highlight-color: transparent;
}

:where(.btn,
.btn-cta,
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-cta-primary,
.btn-cta-secondary,
.btn-submit,
.btn-whatsapp,
.btn-prev,
.btn-next,
.btn-success):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px -10px rgba(0,0,0,.25);
}

:where(.btn,
.btn-cta,
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-cta-primary,
.btn-cta-secondary,
.btn-submit,
.btn-whatsapp,
.btn-prev,
.btn-next,
.btn-success):active {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px -8px rgba(0,0,0,.28);
}

:where(.btn,
.btn-cta,
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-cta-primary,
.btn-cta-secondary,
.btn-submit,
.btn-whatsapp,
.btn-prev,
.btn-next,
.btn-success):focus-visible {
  outline: 3px solid #3a0eff; /* Acessibilidade: outline visível */
  outline-offset: 2px;
  box-shadow: var(--focus-ring);
}

/* Acessibilidade: Links devem ter indicação visual além de cor */
a {
  text-decoration-skip-ink: auto;
}

a:focus-visible {
  outline: 3px solid #3a0eff;
  outline-offset: 2px;
}

/* Variantes */

.btn--primary { background: var(--primary-color); color:#fff; }
.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}
.btn--secondary:hover { background: var(--primary-color); color:#fff; }

.btn--gradient { background: var(--grad-brand); box-shadow: 0 6px 20px -8px rgba(58,14,255,.35); }
.btn--gradient:hover { box-shadow:0 10px 28px -10px rgba(58,14,255,.45); }

.btn--accent { background: var(--yellow); color: var(--purple-dark); }
.btn--accent:hover { background:#e6c400; }

.btn--ghost {
  background: var(--bg-soft);
  color: var(--text-color-alt);
  border:1px solid var(--surface-border);
  box-shadow:none;
}
.btn--ghost:hover {
  background: var(--bg-alt);
}

.btn--whatsapp { background: var(--amil-green); }
.btn--whatsapp:hover { background:#1faa59; }

.btn--icon-only {
  padding:0;
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:1rem;
  box-shadow:0 6px 20px -6px rgba(0,0,0,.20);
}
.btn--icon-only:hover { transform: translateY(-3px) scale(1.05); }

.btn--sm { padding:8px 18px; font-size:.70rem; }
.btn--lg { padding:18px 34px; font-size:.95rem; }
.btn--full { width:100%; }

/* Aliases (legado) */
.btn-cta,
.btn-plan,
.btn-cta-primary { background: #00c358; color:#fff; }

.btn-cta-secondary {
  background: var(--bg-soft);
  color: var(--text-color-alt);
  border:1px solid var(--surface-border);
  box-shadow:none;
}
.btn-cta-secondary:hover {
  background: var(--bg-alt);
}

.btn-primary,
.btn-next,
.btn-success { background: var(--primary-color); color:#fff; }

.btn-secondary { background: transparent; color: var(--primary-color); border:2px solid var(--primary-color); box-shadow:none; }
.btn-secondary:hover { background: var(--primary-color); color:#fff; }

.btn-submit { background: #00c358; color:#fff; font-weight:700; letter-spacing:.5px; }

.btn-whatsapp { background: var(--amil-green); color:#fff; }
.btn-whatsapp:hover { background:#1faa59; }

.btn-prev { background: var(--gray-color); }
.btn-prev:hover { background:#5a6268; }

.mini-btn {
  width:38px;
  height:38px;
  padding:0;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  background: var(--grad-brand);
  color:#fff;
  border:none;
  cursor:pointer;
  box-shadow:0 6px 18px -6px rgba(99,102,241,.30);
  transition: var(--transition);
}
.mini-btn:hover { transform: translateY(-3px) scale(1.05); }

.btn-cta { padding:15px 30px; font-size:1.0rem; border-radius:50px; }
.btn-primary,
.btn-secondary { padding:10px 25px; border-radius:25px; }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c358;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

/* Header */

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  margin-top: 4px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.header {
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  position: static;
  width: 100%;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.header.hidden { transform: translateY(-100%); }

.navbar { padding: 1rem 0; }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Logo Amil - altura fixa em desktop */
.nav-logo.logo-amil img {
  max-height: 80px;
  width: auto;
}

/* Logo Corretora - altura ajustada proporcionalmente */
.nav-logo.logo-corretora img {
  max-height: 100px;
  width: auto;
}

.nav-logo i { color: var(--accent-color); }

.nav-menu { display: flex; }

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover { color: var(--primary-color); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

/* Botão WhatsApp no Header */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-whatsapp::after {
  display: none !important;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp i {
  font-size: 1.1em;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid transparent;
  position: relative;
  z-index: 1300;
}

.nav-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--surface-border);
}

.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
}

.nav-toggle.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.nav-toggle.is-active .bar {
  background: #ffffff;
}

.nav-toggle.is-active .bar:nth-child(1) { 
  transform: rotate(45deg) translate(7px, 7px); 
}

.nav-toggle.is-active .bar:nth-child(2) { 
  opacity: 0;
  transform: translateX(-20px); 
}

.nav-toggle.is-active .bar:nth-child(3) { 
  transform: rotate(-45deg) translate(7px, -7px); 
}

/* Atendimento Header */
.atendimento-header {
  background: var(--bg-alt);
  padding: 10px 0;
  color: var(--text-color);
  border-bottom:1px solid var(--surface-border);
}

.atendimento-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap:wrap;
}

.atendimento-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-soft);
  padding: 15px 25px;
  border-radius: 10px;
  flex: 1;
  border:1px solid var(--surface-border-soft);
}

.atendimento-item img { width: 40px; height: 40px; }

.atendimento-item i {
  font-size: 2rem;
  color: var(--amil-green);
}

.atendimento-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.atendimento-text strong {
  font-size: 1rem;
  display: block;
  color: var(--text-color);
}

.bt-whatsapp {
  background: var(--amil-green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
  transition: var(--transition);
}
.bt-whatsapp:hover {
  background:#1faa59;
  transform: translateY(-2px);
}

/* Hero Section (simplificado claro) */

.hero-section {
  padding: 80px 0 70px;
  background: var(--bg-body);
  position: relative;
  color: var(--text-color);
}

.hero-section--blue {
  background: #451fff;
  color: var(--white);
}

.hero-section--blue .hero-title { 
  color: var(--white);
  text-shadow:0 4px 14px rgba(0,0,0,0.40);
}
.hero-section--blue .hero-description { 
  color: rgba(255,255,255,0.92);
  text-shadow:0 2px 6px rgba(0,0,0,0.35);
}
.hero-section--blue .hero-badge {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color:#fff;
}
.hero-section--blue .hero-badge i { color:#fff; }
.hero-section--blue .hero-feature {
  background: rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
}
.hero-section .hero-feature i { color: var(--yellow); }
.hero-section--blue .stat-item strong { color:#fff; }
.hero-section--blue .stat-item span { color: rgba(255,255,255,0.75); }
.hero-section--blue .btn-cta-primary {
  background: #00c358;
  color:#fff;
  box-shadow:0 6px 24px -8px rgba(0,0,0,0.35);
}
.hero-section--blue .btn-cta-primary:hover { transform: translateY(-4px); }
.hero-section--blue .hero-form-container {
  background:#fff;
  color: var(--text-color);
}

.hero-section::after { display:none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  gap: 60px;
  align-items: start;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: var(--bg-soft);
  padding:8px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  border:1px solid var(--surface-border-soft);
  color: var(--text-color-alt);
}

.hero-badge i { color: var(--primary-color); }

.hero-title {
  font-size: clamp(2.2rem,4.5vw,3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 22px 0 18px;
  color: var(--text-color);
}

/* Ajuste tamanho específico quando fundo azul para evitar quebra excessiva */
.hero-section--blue .hero-title {
  font-size: clamp(1.9rem,3.6vw,2.6rem);
}

/* Destaques de palavras em maiúsculo */
.hero-title .hl-yellow { color: var(--yellow); }
.hero-title .hl-green { color:#00c358; }
.hero-title .hl-white { color:#fff; }

.hero-section--blue .hero-title .hl-yellow,
.hero-section--blue .hero-title .hl-green,
.hero-section--blue .hero-title .hl-white {
  text-shadow:0 3px 10px rgba(0,0,0,0.45);
}

.hero-section--blue .hero-description strong {
  color:#fff;
}

.text-gradient {
  background: linear-gradient(90deg,var(--primary-color),var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display:inline-block;
}

.hero-description {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-features {
  display:flex;
  flex-wrap: wrap;
  gap:14px;
  margin-bottom: 35px;
}

.hero-feature {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.75rem;
  padding:8px 14px;
  background: var(--bg-soft);
  border:1px solid var(--surface-border-soft);
  border-radius: 40px;
  color: var(--text-color-alt);
}

.hero-feature i { color: var(--amil-green); }

.hero-stats {
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  margin-top:8px;
}

.stat-item { min-width:120px; }

.stat-item strong {
  display:block;
  font-size:1.5rem;
  font-weight:700;
  color: var(--primary-color);
}

.stat-item span {
  font-size:0.6rem;
  letter-spacing:.5px;
  color:var(--text-muted);
  text-transform: uppercase;
}

/* Hero Form */

.hero-form-container {
  background: var(--bg-elevated);
  padding: 42px 36px 44px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
  border:1px solid var(--surface-border);
  max-width: 520px;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

.hero-form-container.is-focused {
  box-shadow: 0 0 0 4px rgba(58,14,255,0.15), var(--shadow);
}

.hero-form {
  background: transparent;
  border-radius: 22px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.hero-form .form-header {
  text-align:center;
  margin:0 0 14px;
}

.hero-form .form-header h2 {
  font-size:1.45rem;
  font-weight:700;
  color: var(--primary-color);
  margin-bottom:10px;
}

.hero-form .form-header p {
  font-size:0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-form .form-note {
  font-size: 0.85rem;
  color: var(--amil-green);
  text-align: center;
  background: rgba(0,195,88,0.08);
  border: 1px solid rgba(0,195,88,0.25);
  padding: 12px 16px;
  border-radius: 14px;
  margin: 4px auto 8px;
  width: 100%;
}

.hero-form .form-group label {
  font-size:0.85rem;
  font-weight:600;
  letter-spacing:.2px;
  text-transform: none;
  color: var(--text-color-alt);
}

.hero-form .form-group input,
.hero-form .form-group select {
  border:1px solid var(--surface-border);
  border-radius:12px;
  padding:13px 16px;
  font-size:1rem;
  transition: var(--transition);
  background: var(--bg-soft);
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
  outline:none;
  border-color: var(--primary-color);
  background:#fff;
  box-shadow:0 0 0 3px rgba(58,14,255,0.22);
}

/* Form refinements */
.quote-form-logo {
  max-width:140px;
  height:auto;
  margin:0 auto 10px;
  display:block;
}

.hero-form .form-body {
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap:22px 18px;
  margin-top:8px;
}

.hero-form .form-body .form-group { margin:0; }

.hero-form .form-body .btn-submit {
  grid-column:1 / -1;
  width:100%;
  margin-top:6px;
}

.hero-form .form-body .form-security {
  grid-column:1 / -1;
}

.hero-form .form-body .form-footer-info {
  grid-column:1 / -1;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Form Footer Info */
.form-footer-info {
  margin-top: 12px;
  padding-top: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.form-security i {
  font-size: 12px;
  color: #00a859;
}

.form-security span {
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
}

.form-consent-text {
  font-size: 0.72rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  padding: 0 18px;
  text-align: center;
  max-width: 100%;
}

.form-consent-text a {
  color: #005995;
  text-decoration: underline;
  font-weight: 500;
}

.form-consent-text a:hover {
  color: #0071BC;
}

.lgpd-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.lgpd-card a {
  color: var(--primary-color);
  text-decoration: underline;
}

.lgpd-card a:hover {
  text-decoration: none;
}

.lgpd-list {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lgpd-list li + li {
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .lgpd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lgpd-grid {
    grid-template-columns: 1fr;
  }
}

/* Benefits (wrapper) */

.benefits-section {
  padding:90px 0 70px;
  background: linear-gradient(180deg,var(--bg-soft) 0%,var(--bg-body) 100%);
}

.section-header {
  text-align:center;
  margin:0 auto 50px;
  max-width:650px;
}

.section-tag {
  display:inline-block;
  font-size:0.6rem;
  font-weight:700;
  letter-spacing:1px;
  padding:6px 14px;
  border-radius:30px;
  background: var(--grad-brand);
  color:#fff;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-header h2 {
  font-size: clamp(1.9rem,4vw,2.4rem);
  font-weight:800;
  color: var(--text-color);
  margin-bottom:12px;
}

.section-header p {
  color: var(--text-muted);
  font-size:0.95rem;
  line-height:1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 89, 149, 0.1);
  transform: none;
}

.benefit-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: var(--grad-brand);
}

.benefit-card:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 89, 149, 0.15);
  border-color: rgba(0, 89, 149, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #005995 0%, #0071BC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: none;
}

.benefit-icon i {
  font-size: 30px;
  color: #ffffff;
  animation: none;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #005995;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
}

/* Professional / Corporate */

.professional-plans {
  padding: 80px 0;
  background: var(--bg-alt);
}

.professional-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.professional-text h3 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.professional-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.entities-list { margin: 30px 0; }

.entities-list h4 {
  color: var(--text-color);
  margin-bottom: 15px;
}

.entity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entity-badge {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing:.3px;
}

.professional-image img {
  width: 100%;
  height: auto;
  display:block;
}

/* FAQ */

.faq { padding: 80px 0; }

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-elevated);
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border:1px solid var(--surface-border);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: var(--bg-elevated);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
  text-align: left;
}

.faq-question:hover { background: var(--bg-soft); }

.faq-icon {
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-color-alt);
  line-height: 1.8;
  font-size:.9rem;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

/* Callback Section (claro) */

.callback {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top:1px solid var(--surface-border);
  border-bottom:1px solid var(--surface-border);
}

.callback-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.callback-info h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight:700;
}

.callback-info p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.callback-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-color-alt);
  font-size:.85rem;
}

.feature i {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.callback-form {
  background: var(--bg-elevated);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border:1px solid var(--surface-border);
}

.callback-form h3 {
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: center;
  font-size:1.2rem;
}

.callback-form .form-group { margin-bottom: 20px; }

.callback-form input,
.callback-form select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-soft);
}

.callback-form input:focus,
.callback-form select:focus {
  border-color: var(--primary-color);
  outline:none;
  box-shadow:0 0 0 3px rgba(58,14,255,0.25);
  background:#fff;
}

.full-width { width: 100%; }

/* Plans Section (claro) */

.plans-section {
  padding:90px 0 80px;
  background: var(--bg-body);
  position:relative;
  color: var(--text-color);
  border-top:1px solid var(--surface-border);
  border-bottom:1px solid var(--surface-border);
}

.plans-section::before { display:none; }

.plans-section .section-header h2,
.plans-section .section-header p {
  color: var(--text-color);
}

.plans-grid {
  display:grid;
  gap:40px;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  position:relative;
  z-index:2;
}

.plans-grid .plan-card {
  background: var(--bg-elevated);
  border:1px solid var(--surface-border);
  border-radius:26px;
  padding:34px 30px 38px;
  position:relative;
  display:flex;
  flex-direction:column;
  gap:28px;
  transition: var(--transition);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.plans-grid .plan-card::before { display:none; }

.plans-grid .plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.plan-header h3 {
  margin:0 0 6px;
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.3px;
  color: var(--text-color);
}

.plan-price {
  display:flex;
  align-items: flex-end;
  gap:2px;
  font-weight:700;
  line-height:1;
  margin: 4px 0 12px;
}

.plan-price .currency {
  font-size:0.75rem;
  opacity:.85;
  transform: translateY(-2px);
  color: var(--text-color-alt);
}

.plan-price .value {
  font-size:2.3rem;
  color: var(--primary-color);
  font-weight:800;
}

.plan-price .period {
  font-size:0.6rem;
  letter-spacing:.5px;
  opacity:.6;
  text-transform:uppercase;
  transform: translateY(-5px);
  color: var(--text-muted);
}

.plan-description {
  font-size:0.65rem;
  letter-spacing:.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin:0;
}

.plan-features {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.plan-features li {
  font-size:0.8rem;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--text-color-alt);
}

.plan-features i {
  color: var(--amil-green);
  font-size:0.9rem;
}

.plan-card.featured {
  border:1px solid var(--primary-color);
  background:
    linear-gradient(var(--bg-elevated),var(--bg-elevated)) padding-box,
    var(--grad-brand) border-box;
}

.plan-badge {
  position:absolute;
  top:14px;
  right:14px;
  background: var(--primary-color);
  font-size:0.55rem;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:30px;
  font-weight:600;
  color:#fff;
}

/* Corporate Section */

.corporate-section {
  padding:100px 0 90px;
  background: var(--bg-body);
}

.corporate-content {
  display:grid;
  gap:60px;
  grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  align-items:center;
}

.corporate-text h2 {
  font-size: clamp(2rem,4vw,2.4rem);
  font-weight:800;
  color: var(--text-color);
  margin:16px 0 22px;
}

.corporate-description {
  color: var(--text-muted);
  margin:0 0 30px;
  max-width:540px;
  font-size:.95rem;
  line-height:1.7;
}

.corporate-features {
  display:flex;
  flex-direction:column;
  gap:22px;
  margin:0 0 38px;
}

.corporate-feature {
  display:flex;
  gap:18px;
  align-items:flex-start;
  background: var(--bg-soft);
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--surface-border);
  transition: var(--transition);
}

.corporate-feature i {
  font-size:1.5rem;
  color: var(--primary-color);
  margin-top:4px;
}

.corporate-feature:hover {
  background: var(--bg-elevated);
  box-shadow:0 12px 32px -8px rgba(15,23,42,0.10);
  transform: translateY(-4px);
}

.corporate-feature h4 {
  margin:0 0 4px;
  font-size:1rem;
  font-weight:600;
  color: var(--text-color);
}

.corporate-feature p {
  margin:0;
  font-size:0.8rem;
  color: var(--text-color-alt);
}

.btn-cta {
  font-size:0.7rem;
  letter-spacing:1px;
}

/* === Corporate Image Sizing (ajuste tamanho e organização) === */
.corporate-image {
  display:flex;
  justify-content:center;
  align-items:center;
}

.corporate-image img {
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  border-radius:26px;
  box-shadow:0 14px 36px -18px rgba(15,23,42,0.35);
  border:1px solid var(--surface-border);
  object-fit:cover;
  /* Evita que a imagem domine visualmente */
  aspect-ratio: 4 / 5;
}

@media (max-width: 900px) {
  .corporate-content {
    gap:40px;
  }
  .corporate-text {
    text-align:center;
    margin:0 auto;
  }
  .corporate-description {
    margin-left:auto;
    margin-right:auto;
  }
  .corporate-features {
    align-items:stretch;
  }
}

@media (max-width: 640px) {
  .corporate-image img {
    max-width:320px;
    aspect-ratio:auto;
  }
}

/* Adhesion Section (claro) */

.adhesion-section {
  padding:100px 0 70px;
  background: var(--bg-alt);
  color: var(--text-color);
  position:relative;
  border-top:1px solid var(--surface-border);
  border-bottom:1px solid var(--surface-border);
}

.adhesion-info {
  max-width:840px;
  margin:0 auto;
  text-align:center;
}

.adhesion-info > p {
  color: var(--text-muted);
  font-size:0.9rem;
  line-height:1.7;
  margin-bottom:40px;
}

.entities-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap:20px;
  margin-bottom:45px;
}

.entity-card {
  background: var(--bg-elevated);
  border:1px solid var(--surface-border);
  padding:18px 14px;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  color: var(--text-color-alt);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.entity-card i {
  font-size:1.3rem;
  color: var(--primary-color);
}

.entity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.adhesion-benefits {
  text-align:left;
  margin:0 auto 46px;
  max-width:520px;
}

.adhesion-benefits h3 {
  font-size:0.7rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin:0 0 18px;
  color: var(--text-color-alt);
}

.adhesion-benefits ul {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.adhesion-benefits li {
  font-size:0.8rem;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--text-muted);
}

.adhesion-benefits i { color: var(--amil-green); }

/* Testimonials */

.testimonials-section {
  padding:100px 0 90px;
  background: var(--bg-body);
}

.testimonials-section .section-header { margin-bottom:60px; }

.testimonials-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap:34px;
}

.testimonial-card {
  background: var(--bg-elevated);
  border:1px solid var(--surface-border);
  padding:34px 30px 40px;
  border-radius:26px;
  position:relative;
  display:flex;
  flex-direction:column;
  gap:20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background:#fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.testimonial-rating { display:flex; gap:6px; }
.testimonial-rating i { color: var(--yellow); }

.testimonial-text {
  font-size:0.9rem;
  line-height:1.6;
  color: var(--text-color-alt);
  font-style:italic;
}

.testimonial-author {
  margin-top:auto;
  font-size:0.7rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--text-muted);
}

.testimonial-author strong {
  display:block;
  font-size:0.9rem;
  font-weight:600;
  color: var(--text-color);
  text-transform:none;
  margin-bottom:2px;
}

/* CTA Section (claro) */

.cta-section {
  padding:110px 0;
  background: var(--bg-alt);
  color: var(--text-color);
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--surface-border);
  border-bottom:1px solid var(--surface-border);
}

.cta-section::after { display:none; }

.cta-content {
  text-align:center;
  max-width:780px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.cta-content h2 {
  font-size: clamp(2rem,4.5vw,3rem);
  font-weight:800;
  line-height:1.1;
  margin:0 0 24px;
  color: var(--text-color);
}

.cta-content p {
  font-size:1.05rem;
  margin:0 0 40px;
  color: var(--text-color-alt);
}

.cta-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.btn-cta-primary {
  background: #00c358;
  color:#fff;
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow:0 10px 24px -10px rgba(0,0,0,.25);
}

.btn-cta-secondary {
  background: var(--bg-soft);
  border:1px solid var(--surface-border);
  color: var(--text-color-alt);
  backdrop-filter:none;
}

.btn-cta-secondary:hover {
  background: var(--bg-elevated);
  transform: translateY(-4px);
}

/* Simulator (mantido leve) */

.simulator {
  padding: 80px 0;
  background: var(--bg-alt);
}

.simulator-header {
  text-align: center;
  margin-bottom: 50px;
}

.simulator-header h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.simulator-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.daily-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  padding: 15px 25px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-top: 20px;
  border:1px solid var(--surface-border);
}

.daily-counter .counter-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.daily-counter .counter-text {
  color: var(--text-muted);
}

.simulator-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border:1px solid var(--surface-border);
}

.progress-bar {
  position: relative;
  padding: 30px;
  background: var(--grad-primary);
  color:#fff;
}

.progress-fill {
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.3s ease;
  margin-bottom: 20px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition);
  font-size:.9rem;
}

.step-indicator.active {
  background: var(--yellow);
  color: var(--purple-dark);
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
}

.simulator-form { padding: 40px; }

.form-step { display:none; }
.form-step.active { display:block; animation: slideIn 0.3s ease; }

@keyframes slideIn {
  from { opacity:0; transform: translateX(15px); }
  to { opacity:1; transform: translateX(0); }
}

.form-step h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display:flex; flex-direction:column; }

.form-group label {
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
  font-size:.75rem;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--surface-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-soft);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58,14,255,0.20);
  background:#fff;
}

.form-group input.error {
  border-color: var(--accent-color);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-option { cursor:pointer; position:relative; }

.plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 20px;
  background: var(--bg-elevated);
  border: 2px solid var(--surface-border);
  border-radius: 15px;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow);
}

.plan-option input[type="radio"]:checked + .plan-card {
  border-color: var(--primary-color);
  background: var(--bg-alt);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.plan-card i {
  font-size: 3rem;
  color: var(--primary-color);
}

.plan-card h4 {
  margin: 0;
  color: var(--text-color);
  font-size: 1.05rem;
}

.plan-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.summary {
  background: var(--bg-soft);
  padding: 30px;
  border-radius: 15px;
  border:1px solid var(--surface-border);
}

.summary-content { margin-top: 20px; }

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--surface-border);
  font-size:.85rem;
  color: var(--text-color-alt);
}

.summary-item:last-child { border-bottom: none; }

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-border);
}

.btn-prev,
.btn-next,
.btn-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing:.3px;
}

.btn-prev {
  background: var(--gray-color);
  color: var(--white);
}

.btn-prev:hover { background: #5a6268; }

.btn-next {
  background: var(--primary-color);
  color: var(--white);
}

.btn-next:hover { background: var(--violet); }

.btn-success {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-success:hover { background: var(--primary-color); }

.success-message {
  text-align: center;
  padding: 60px 40px;
}

.success-message i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.success-message h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.success-message p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Promo / Video / Quick Points */

.simulator-promo {
  padding: 90px 0 70px;
  background: linear-gradient(180deg,var(--bg-body) 0%,var(--bg-soft) 100%);
  position: relative;
}

.simulator-promo-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  align-items: start;
}

.simulator-promo-text h2 {
  font-size: clamp(1.9rem,4vw,2.4rem);
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 18px;
}

.simulator-promo-text p {
  color: var(--text-color-alt);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 30px;
}

.promo-card {
  position: relative;
  flex: 1 1 240px;
  background: var(--bg-elevated);
  color: var(--text-color);
  border-radius: 22px;
  padding: 22px 20px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  overflow: hidden;
  border:1px solid var(--surface-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.promo-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.promo-card::before { display:none; }
.promo-card strong {
  font-size: .7rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-color-alt);
}
.promo-card span {
  font-size: .6rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.promo-card b {
  font-size: .95rem;
  color: var(--primary-color);
  font-weight:700;
}

.mini-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.daily-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  color: var(--text-color-alt);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .65rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  margin: 6px 0 8px;
  border:1px solid var(--surface-border);
}

.inline-arrow {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
  animation: floatArrow 4s ease-in-out infinite;
}

@keyframes floatArrow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.video-placeholder {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder::before { display:none; }

.video-placeholder i {
  font-size: 2.1rem;
  color: var(--primary-color);
}

.quick-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-color-alt);
  background: var(--bg-soft);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
}

.quick-points i { color: var(--amil-green); }

.simulator-disclaimer {
  margin-top: 34px;
  font-size: .55rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Simulator Promo Redesign Additions ===== */
.simulator-promo-head {
  margin:0 0 26px;
  max-width:560px;
}

.simulator-badge {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background: var(--grad-brand);
  color:#fff;
  padding:8px 16px;
  border-radius:40px;
  font-size:0.55rem;
  letter-spacing:1px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:0 6px 18px -6px rgba(58,14,255,.35);
}

.simulator-promo-head h2 {
  font-size: clamp(2rem,4.2vw,2.6rem);
  font-weight:800;
  line-height:1.1;
  margin:14px 0 14px;
  color: var(--text-color);
}

.simulator-promo-head .lead {
  font-size:0.95rem;
  color: var(--text-color-alt);
  line-height:1.65;
  margin:0;
}

.promo-highlights {
  list-style:none;
  margin:0 0 34px;
  padding:0;
  display:grid;
  gap:14px 22px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
}

.promo-highlights li {
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:.75rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--text-color-alt);
  background: var(--bg-soft);
  border:1px solid var(--surface-border);
  padding:12px 14px;
  border-radius:14px;
  line-height:1.4;
}

.promo-highlights i {
  font-size:1rem;
  color: var(--amil-green);
  margin-top:1px;
}

.promo-cards-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
  gap:24px;
  margin:0 0 34px;
}

.promo-cards-grid .promo-card {
  padding:26px 22px 28px;
  position:relative;
  min-height:170px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:10px;
}

.promo-card .tag {
  display:inline-block;
  font-size:.55rem;
  letter-spacing:1px;
  font-weight:700;
  text-transform:uppercase;
  background: var(--bg-soft);
  border:1px solid var(--surface-border);
  padding:6px 12px;
  border-radius:30px;
  color: var(--text-color-alt);
  margin: 0 auto;
}

.promo-card .price {
  margin-top:4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  width:100%;
}

.promo-card .price .from {
  font-size:.55rem;
  letter-spacing:.6px;
  text-transform:uppercase;
  color: var(--text-muted);
  font-weight:600;
}

.promo-card .price .value {
  font-size:1.4rem;
  font-weight:800;
  line-height:1;
  letter-spacing:.5px;
  color: var(--primary-color);
}

.promo-card .price .currency {
  font-size:.7rem;
  font-weight:700;
  opacity:.75;
  margin-right:2px;
  vertical-align:top;
  position:relative;
  top:-4px;
}

.promo-card.is-health { border:1px solid var(--surface-border); }
.promo-card.is-odonto { border:1px solid var(--surface-border); }

.promo-card.is-health:hover { background: var(--bg-alt); }
.promo-card.is-odonto:hover { background: var(--bg-alt); }

.promo-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-top:10px;
  width:100%;
}

.promo-actions .btn-cta-primary {
  box-shadow:0 10px 26px -10px rgba(0,0,0,.30);
}

.trust-note {
  font-size:.6rem;
  letter-spacing:.7px;
  text-transform:uppercase;
  color: var(--text-muted);
  display:inline-flex;
  gap:6px;
  align-items:center;
  font-weight:600;
}

.trust-note i {
  color: var(--primary-color);
  font-size:.8rem;
}

.video-placeholder.enhanced {
  justify-content:center;
  background:
    linear-gradient(var(--bg-elevated),var(--bg-elevated)) padding-box,
    var(--grad-brand) border-box;
  border:1px solid transparent;
  box-shadow:0 14px 40px -14px rgba(15,23,42,0.35);
  position:relative;
}

.video-placeholder.enhanced::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(135deg,rgba(255,255,255,0) 0 30px,rgba(255,255,255,0.04) 30px 60px);
  pointer-events:none;
}

.video-placeholder .video-label {
  font-size:.6rem;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:600;
  color: var(--text-color-alt);
}

.video-placeholder.enhanced i {
  font-size:2.6rem;
  color: var(--primary-color);
  filter: drop-shadow(0 6px 20px rgba(58,14,255,.35));
}

/* Fine-tune existing mini-btn inside promo cards (ensure layering) */
.promo-cards-grid .promo-card .mini-btn {
  top:12px;
  right:12px;
  background: var(--grad-brand);
  box-shadow:0 6px 20px -6px rgba(58,14,255,.4);
}

.promo-cards-grid .promo-card .mini-btn:hover {
  transform: translateY(-4px) scale(1.07);
}

/* Responsive adjustments (local) */
@media (max-width: 800px) {
  .promo-highlights {
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  }
  .promo-actions { gap:18px; }
}

@media (max-width: 520px) {
  .simulator-promo-head h2 { font-size:2rem; }
  .promo-cards-grid { gap:20px; }
  .promo-highlights { gap:10px 16px; }
  .promo-highlights li { font-size:.65rem; padding:10px 12px; }
  .promo-card .price .value { font-size:1.3rem; }
}

/* ===== Simulator Promo Enhancement v2 (cores, espaçamento, organização) ===== */
.simulator-promo {
  padding:120px 0 100px;
  background: var(--bg-soft);
  position:relative;
  isolation:isolate;
}

.simulator-promo::before { display:none; }

.simulator-promo-grid {
  gap:60px;
  position:relative;
  z-index:1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.simulator-promo-text {
  background: var(--bg-elevated);
  padding:40px 30px 45px;
  border-radius:40px;
  border:1px solid var(--surface-border);
  box-shadow:0 12px 34px -14px rgba(15,23,42,0.28);
  position:relative;
  overflow:hidden;
  max-width:100%;
  width:100%;
  margin:0 auto;
  text-align:center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simulator-promo-text::after { display:none; }

/* Simplified & centered layout overrides */
.promo-highlights { 
  max-width:900px; 
  margin:0 auto 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-cards-grid { 
  max-width:600px; 
  margin:0 auto 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.promo-cards-grid .promo-card {
  background: var(--bg-elevated);
}
.promo-card.is-health {
  background:
    linear-gradient(135deg,rgba(69,31,255,0.12) 0%,rgba(69,31,255,0.04) 70%),
    var(--bg-elevated);
  border:1px solid rgba(69,31,255,0.30);
}
.promo-card.is-odonto {
  background:
    linear-gradient(135deg,rgba(0,195,88,0.14) 0%,rgba(0,195,88,0.05) 70%),
    var(--bg-elevated);
  border:1px solid rgba(0,195,88,0.32);
}
.promo-card.is-health .tag {
  background: rgba(69,31,255,0.18);
  color:#451fff;
  border:none;
}
.promo-card.is-odonto .tag {
  background: rgba(0,195,88,0.22);
  color:#038d46;
  border:none;
}
.promo-card.is-health .price .value { color:#451fff; }
.promo-card.is-odonto .price .value { color:#00c358; }
.promo-cards-grid .promo-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 44px -16px rgba(15,23,42,0.40);
}

.simulator-promo-head { 
  margin:0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.simulator-badge {
  box-shadow:0 8px 28px -10px rgba(58,14,255,.45);
  background:
    linear-gradient(90deg,rgba(255,255,255,0.15),rgba(255,255,255,0)) padding-box,
    var(--grad-brand) border-box;
  border:1px solid transparent;
  margin: 0 auto;
}

.simulator-promo-head h2 {
  background: linear-gradient(90deg,var(--primary-color),var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color:transparent;
}

.promo-highlights {
  gap:18px 26px;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  margin-bottom:40px;
}

.promo-highlights li {
  background: var(--bg-soft);
  border:1px solid var(--surface-border);
  box-shadow:none;
  transition: var(--transition);
}

.promo-highlights li:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 30px -14px rgba(15,23,42,0.35);
}

.promo-cards-grid {
  gap:30px;
  margin-bottom:42px;
}

.promo-cards-grid .promo-card {
  border-radius:28px;
  padding:30px 26px 34px;
  min-height:190px;
  box-shadow:0 14px 38px -18px rgba(15,23,42,0.35);
  transition: var(--transition);
}




.promo-cards-grid .promo-card:hover {
  transform:translateY(-8px);
  box-shadow:0 18px 46px -20px rgba(15,23,42,0.45);
}

.promo-card .price .value { font-size:1.55rem; }

/* Extra visual refinement v3 */
.promo-card.is-health .price .value {
  color: var(--primary-color);
}

.promo-card.is-odonto .price .value {
  color:#00c358;
}

.promo-card.is-health::after,
.promo-card.is-odonto::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 85% 15%,rgba(255,255,255,0.18),transparent 60%);
  opacity:0;
  transition: var(--transition);
  pointer-events:none;
}

.promo-card.is-health:hover::after,
.promo-card.is-odonto:hover::after {
  opacity:1;
}

.promo-highlights {
  position:relative;
}

.promo-highlights::after { display:none; }

.promo-actions .btn-cta-primary {
  box-shadow:0 16px 42px -18px rgba(0,195,88,0.55);
}

.promo-actions .btn-cta-primary:hover {
  filter:brightness(1.05);
}

.video-placeholder.enhanced {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.video-placeholder.enhanced i {
  filter: drop-shadow(0 10px 34px rgba(69,31,255,0.45));
}

.simulator-disclaimer {
  text-align:center;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

/* Fine responsive polish */
@media (max-width: 1040px) {
  .simulator-promo-text { padding:50px 48px 56px; }
}

@media (max-width: 640px) {
  .simulator-promo-text { padding:42px 34px 48px; }
  .promo-highlights::after { margin:28px 0 2px; }
  .promo-actions { flex-direction:column; align-items:stretch; }
  .promo-actions .btn-cta-primary { width:100%; }
}

.promo-actions {
  margin-top:0;
  gap:34px;
}

.promo-actions .btn-cta-primary {
  padding:18px 40px;
  font-size:.9rem;
  border-radius:18px;
  background:
    linear-gradient(90deg,#00c358,#05a74d);
  position:relative;
  overflow:hidden;
}

.promo-actions .btn-cta-primary::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,0.25),transparent 60%);
  opacity:.25;
  mix-blend-mode:overlay;
  pointer-events:none;
}

.trust-note {
  font-size:.65rem;
  letter-spacing:.8px;
  color: var(--text-color-alt);
}

.video-placeholder.enhanced {
  margin-top:20px;
  border-radius:40px;
  aspect-ratio: 4/3;
  background:
    linear-gradient(var(--bg-elevated),var(--bg-elevated)) padding-box,
    linear-gradient(130deg,rgba(69,31,255,0.55),rgba(0,195,88,0.55)) border-box;
  border:2px solid transparent;
  box-shadow:0 20px 60px -18px rgba(15,23,42,0.45);
}

.video-placeholder.enhanced .video-label {
  color: var(--text-color-alt);
  letter-spacing:1.2px;
}

.video-placeholder.enhanced i {
  font-size:3rem;
  color: var(--primary-color);
}

.promo-cards-grid .promo-card .mini-btn {
  background: var(--grad-brand);
  width:42px;
  height:42px;
}

.promo-cards-grid .promo-card .mini-btn:hover {
  transform:translateY(-5px) scale(1.1);
}

/* Micro refinements */
.simulator-disclaimer {
  margin-top:46px;
  letter-spacing:.6px;
  opacity:.85;
}

/* Additional responsive refinements */
@media (max-width: 960px) {
  .simulator-promo-text { padding:42px 42px 48px; }
  .promo-actions { gap:24px; }
}

@media (max-width: 720px) {
  .simulator-promo { padding:100px 0 90px; }
  .simulator-promo-text { border-radius:34px; padding:38px 36px 44px; }
  .promo-highlights { gap:14px 18px; }
  .promo-cards-grid { gap:24px; }
}

@media (max-width: 520px) {
  .simulator-promo-text { padding:34px 28px 40px; }
  .promo-actions .btn-cta-primary { width:100%; justify-content:center; }
  .promo-actions { gap:18px; }
  .promo-cards-grid .promo-card { padding:26px 22px 30px; }
  .promo-card .price .value { font-size:1.45rem; }
}

/* === Promo Typography Overrides (v4 scaling) ===
   Aumento de hierarquia visual na seção de simulação/promo.
   Mantido uso de clamp para boa responsividade sem quebrar layout. */

.simulator-promo-text h2 {
  font-size: clamp(2.2rem,4.8vw,3rem);
}

.simulator-promo-head .lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.promo-highlights li {
  font-size: .8rem;
  padding:14px 18px;
  line-height:1.5;
}

.promo-card .tag {
  font-size:.72rem;
  padding:7px 16px;
  letter-spacing:1.1px;
}

.promo-card .price .from {
  font-size:.7rem;
  letter-spacing:.8px;
}

.promo-card .price .value {
  font-size: clamp(1.9rem,3.2vw,2.2rem);
}

.promo-card .price .currency {
  font-size:.8rem;
  top:-6px;
}

.trust-note {
  font-size:.7rem;
  letter-spacing:.85px;
}

@media (max-width: 900px) {
  .simulator-promo-text h2 { font-size: clamp(2rem,5vw,2.6rem); }
  .promo-card .price .value { font-size: clamp(1.8rem,4.2vw,2.05rem); }
}

@media (max-width: 720px) {
  .simulator-promo-text h2 { font-size:2.2rem; }
  .promo-highlights li { font-size:.72rem; padding:12px 14px; }
  .promo-card .price .value { font-size:1.9rem; }
  .promo-card .tag { font-size:.68rem; }
}

@media (max-width: 520px) {
  .promo-card .price .value { font-size:1.65rem; }
  .promo-highlights li { font-size:.7rem; }
  .simulator-promo-head .lead { font-size:.95rem; }
}

/* Footer (claro) */

.footer {
  background: var(--bg-body);
  color: var(--text-color);
  padding: 70px 0 24px;
  border-top:1px solid var(--surface-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  font-size:1rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-weight:600;
  color: var(--text-color);
}

.footer-section h3 span { color: var(--primary-color); }

.footer-section p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size:.85rem;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 10px; }

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size:.85rem;
}

.footer-section ul li a:hover { color: var(--primary-color); }

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border:1px solid var(--surface-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-alt);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color:#fff;
  transform: translateY(-3px);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size:.85rem;
  color: var(--text-color-alt);
}

.footer-contact i {
  color: var(--primary-color);
}

.legal-info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--surface-border);
}

.footer-bottom p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size:.75rem;
}

.footer-bottom i { color: var(--accent-color); }

/* Cookie Bar (claro) */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-elevated);
  color: var(--text-color);
  padding: 18px 26px;
  font-size: .7rem;
  letter-spacing: .3px;
  transform: translateY(110%);
  transition: transform .45s ease;
  z-index: 1400;
  box-shadow: 0 -4px 12px -4px rgba(0,0,0,0.08);
  border-top:1px solid var(--surface-border);
}

.cookie-bar.visible { transform: translateY(0); }

.cookie-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-bar a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  border: 1px solid var(--surface-border);
  background: var(--bg-soft);
  color: var(--text-color-alt);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn.primary {
  background: var(--primary-color);
  color: #fff;
  border:none;
}

.cookie-btn:hover { transform: translateY(-2px); }

/* Animations / Utilities */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.6s ease-out; }

.text-center { text-align:center; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* Scrollbar */

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* Accessibility */

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-plan:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible,
.btn-cta:focus-visible,
.nav-link:focus-visible,
.mini-btn:focus-visible,
.cookie-btn:focus-visible,
.hero-form .form-group input:focus-visible,
.hero-form .form-group select:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.faq-question:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-form-container {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .hero-grid { gap:40px; }
  .simulator-promo-grid { gap: 40px; }
  .callback-content { grid-template-columns:1fr; gap:40px; }
  .simulator-promo-text { padding: 35px 25px 40px; }
}

@media (max-width: 780px) {
  .hero-section { padding-top: 80px; }
  .hero-stats { gap:20px; }
  
  /* WhatsApp Flutuante em mobile */
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
  .simulator-promo-text { 
    padding: 30px 20px 35px;
    border-radius: 24px;
  }
  .promo-cards-grid { max-width: 100%; }
  .promo-highlights { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero-grid { gap: 36px; }
  .hero-form { padding:0; }
  .hero-form .form-body { grid-template-columns:1fr; gap: 18px; }
  .hero-form-container { 
    padding: 28px 22px 34px;
    border-radius: 22px;
    width: min(100%, 440px);
    margin: 0 auto;
  }
  .hero-form .form-header h2 { font-size: 1.3rem; }
  .hero-form .form-header p { font-size: 0.85rem; }
  .hero-form .form-note {
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .plans-grid { gap:28px; }
  .testimonials-grid { gap:28px; }
  .cta-section { padding:90px 0; }
  .cta-content h2 { font-size:2.2rem; }
  .brands-grid { gap:30px 40px; }
  .entities-grid { gap:16px; }
  .form-row { grid-template-columns:1fr; }
  .simulator-promo { padding: 80px 0 60px; }
  .simulator-promo-text { 
    padding: 25px 15px 30px;
    border-radius: 20px;
  }
  .promo-cards-grid { gap: 15px; margin-bottom: 30px; }
  .promo-cards-grid .promo-card {
    padding: 20px 18px 24px;
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  .hero-title { font-size:2rem; }
  .hero-description { font-size:0.9rem; }
  .hero-features { gap:8px; }
  .hero-feature { font-size:0.6rem; padding:6px 10px; }
  .stat-item strong { font-size:1.2rem; }
  .hero-form-container {
    padding: 24px 18px 30px;
    border-radius: 18px;
    width: min(100%, 410px);
  }
  .hero-form .form-header h2 { font-size: 1.15rem; margin-bottom: 6px; }
  .hero-form .form-header p { font-size: 0.8rem; }
  .hero-form .form-note {
    font-size: 0.75rem;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .hero-form .form-body { gap: 16px; }
  .hero-form .form-group label { font-size: 0.8rem; }
  .hero-form .form-group input,
  .hero-form .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .btn-submit {
    padding: 14px 22px;
    font-size: 0.85rem;
  }
  .plans-grid .plan-card { padding:30px 24px 34px; }
  .plan-price .value { font-size:2.1rem; }
  .cta-buttons { gap:14px; }
  .daily-info { font-size: .55rem; }
  .quick-points li { font-size: .6rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.75rem; }
  .hero-form-container {
    padding: 22px 14px 26px;
  }
  .hero-form .form-header h2 { font-size: 1.05rem; }
  .hero-form .form-header p { font-size: 0.78rem; }
  .hero-form .form-group input,
  .hero-form .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .btn-submit {
    padding: 13px 20px;
    font-size: 0.8rem;
  }
  .form-footer-info { margin-top: 12px; padding-top: 8px; }
  .form-security span { font-size: 0.7rem; }
  .form-consent-text { font-size: 0.65rem; }
}

/* === Promo Cards Blue Override (user request) ===
   - Cards unificados em azul #451fff
   - Texto e preços em branco para contraste
   - Botão centralizado logo abaixo dos cards
   - Mantidos overrides anteriores sem remoção (cascade final) */

.promo-cards-grid .promo-card {
  background:#451fff;
  border:1px solid #2f16b3;
  color:#fff;
}

.promo-cards-grid .promo-card .tag {
  background:rgba(255,255,255,0.18);
  color:#fff;
  border:none;
}

.promo-cards-grid .promo-card .price .value {
  color:#fff;
}

.promo-cards-grid .promo-card .price .currency {
  color:rgba(255,255,255,0.85);
}

.promo-cards-grid .promo-card .price .from {
  color:rgba(255,255,255,0.65);
}

.promo-cards-grid .promo-card:hover {
  box-shadow:0 18px 46px -16px rgba(34,18,110,0.55);
  transform:translateY(-6px);
}

.promo-cards-grid .promo-card .mini-btn {
  background:rgba(255,255,255,0.20);
  box-shadow:0 6px 18px -6px rgba(0,0,0,0.35);
}

.promo-cards-grid .promo-card .mini-btn:hover {
  background:rgba(255,255,255,0.30);
}

.promo-actions {
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  gap:14px;
}

.promo-actions .btn-cta-primary {
  background:#00c358;
  background-image:linear-gradient(90deg,#00c358,#05a74d);
  box-shadow:0 14px 38px -14px rgba(0,195,88,0.55);
  padding:18px 46px;
  border-radius:24px;
}

.promo-actions .btn-cta-primary:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 50px -18px rgba(0,195,88,0.65);
}

.promo-actions .trust-note {
  font-size:.6rem;
  opacity:.85;
  color:rgba(255,255,255,0.85);
}

@media (max-width:640px) {
  .promo-actions .btn-cta-primary { width:100%; }
}

/* === Benefits Blue Variant (visual uplift) ===
   - Fundo azul sólido com leve overlay radial
   - Cartões em efeito "glass" (translúcido) para destacar conteúdo
   - Tipografia clara e melhor contraste
   - Ícones com anel luminoso + micro animação hover
   - Animação de entrada suave já herdada de AOS
   - Mantido escopo restrito (.benefits-section--blue) sem quebrar versão padrão
*/
.benefits-section--blue {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,0.10), rgba(255,255,255,0) 65%),
    #451fff;
  position:relative;
  overflow:hidden;
}

.benefits-section--blue::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(255,255,255,0.12) 0%,rgba(255,255,255,0) 60%);
  pointer-events:none;
  mix-blend-mode:overlay;
}

.benefits-section--blue .section-header h2 {
  color:#fff;
  text-shadow:0 4px 18px rgba(0,0,0,0.25);
}

.benefits-section--blue .section-header p {
  color:rgba(255,255,255,0.82);
}

.benefits-section--blue .section-tag {
  background:
    linear-gradient(90deg,rgba(255,255,255,0.25),rgba(255,255,255,0)) padding-box,
    var(--grad-brand) border-box;
  border:1px solid transparent;
  box-shadow:0 6px 20px -8px rgba(0,0,0,0.45);
}

.benefits-section--blue .benefit-card {
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:0 18px 42px -18px rgba(0,0,0,0.55);
  transition:transform .5s cubic-bezier(.16,.8,.3,1), box-shadow .45s ease, border-color .45s ease;
}

.benefits-section--blue .benefit-card::before {
  height:5px;
  background:linear-gradient(90deg,#ffce3d,#00c358,#ffffff);
  opacity:.85;
}

.benefits-section--blue .benefit-card:hover {
  transform: none;
  box-shadow:0 18px 42px -18px rgba(0,0,0,0.55);
  border-color:rgba(255,255,255,0.35);
}

.benefits-section--blue .benefit-icon {
  background:
    linear-gradient(140deg,rgba(255,255,255,0.20),rgba(255,255,255,0.05));
  position:relative;
  box-shadow:0 10px 28px -10px rgba(0,0,0,0.55);
}

.benefits-section--blue .benefit-icon::after {
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%,rgba(255,255,255,0.35),rgba(255,255,255,0) 60%);
  mix-blend-mode:screen;
  pointer-events:none;
  opacity:.7;
}

.benefits-section--blue .benefit-card h3 {
  color:#fff;
  text-shadow:0 3px 14px rgba(0,0,0,0.35);
  letter-spacing:.4px;
}

.benefits-section--blue .benefit-card p {
  color:rgba(255,255,255,0.90);
  text-shadow:0 1px 2px rgba(0,0,0,0.35);
}

.benefits-section--blue .footnote {
  font-size:.65rem;
  letter-spacing:.5px;
  color:rgba(255,255,255,0.70);
  display:block;
  margin-top:40px;
  text-align:center;
}

.benefits-section--blue .benefits-grid {
  gap:34px;
}

.benefits-section--blue .benefit-card:nth-child(odd),
.benefits-section--blue .benefit-card:nth-child(even) {
  animation: none;
  transform: none;
}

@media (max-width:780px) {
  .benefits-section--blue .benefit-card {
    padding:34px 26px;
  }
  .benefits-section--blue .benefits-grid { gap:28px; }
  .benefits-section--blue .benefit-icon { width:70px; height:70px; }
}

@media (max-width:520px) {
  .benefits-section--blue .benefit-card {
    padding:30px 24px;
  }
  .benefits-section--blue .benefit-card h3 { font-size:1.05rem; }
}

/* === CTA Blue Variant (user request) ===
   - Fundo azul sólido + radiais leves
   - Tipografia clara com sombra para contraste
   - Botão primário mantém verde (maior destaque)
   - Secundário em glass translúcido
   - Mantido escopo isolado (.cta-section--blue) */
.cta-section--blue {
  background:#451fff;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.cta-section--blue::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%,rgba(255,255,255,0.18),rgba(255,255,255,0) 60%),
    radial-gradient(circle at 82% 78%,rgba(255,255,255,0.14),rgba(255,255,255,0) 65%);
  mix-blend-mode:overlay;
  pointer-events:none;
}

.cta-section--blue .cta-content h2 {
  color:#fff;
  text-shadow:0 6px 26px rgba(0,0,0,0.35);
}

.cta-section--blue .cta-content p {
  color:rgba(255,255,255,0.88);
  text-shadow:0 2px 8px rgba(0,0,0,0.35);
}

.cta-section--blue .btn-cta-primary {
  background:linear-gradient(90deg,#00c358,#05a74d);
  box-shadow:0 18px 52px -22px rgba(0,0,0,0.60);
}

.cta-section--blue .btn-cta-primary:hover {
  transform:translateY(-6px);
  box-shadow:0 24px 70px -30px rgba(0,0,0,0.70);
}

.cta-section--blue .btn-cta-secondary {
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.35);
  color:#fff;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 14px 40px -18px rgba(0,0,0,0.55);
}

.cta-section--blue .btn-cta-secondary:hover {
  background:rgba(255,255,255,0.26);
}

.cta-section--blue .btn-cta-secondary i {
  color:#fff;
}

.cta-section--blue .cta-buttons {
  gap:26px;
}

@media (max-width:640px) {
  .cta-section--blue .cta-buttons { gap:18px; }
  .cta-section--blue { padding:90px 0; }
  .cta-section--blue .cta-content h2 { font-size:2.2rem; }
}
