:root {
  --primary-dark: #F6F8FF;      /* Text and titles (was dark) */
  --primary-blue: #279AF1;      /* Highlights */
  --accent-blue: #0816C9;       /* Deep accents */
  --text-gray: #8A919D;         /* Subtexts */
  --bg-light: #0f172a;          /* Main background (darker than 1E293B for depth) */
  --white: #1E293B;             /* Cards and elevated surfaces (the palette's main dark) */
  --success-green: #34d399;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--primary-dark);
  background: var(--bg-light);
  line-height: 1.6;
}
.container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 56rem; }
.text-center { text-align: center; }
.text-blue { color: var(--primary-blue); }
.text-dark { color: var(--primary-dark); }
.text-green { color: var(--success-green); }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-large { width: 2rem; height: 2rem; }
.icon-primary { color: var(--primary-blue); }
.icon-accent { color: var(--primary-blue); }
.icon-star { width: 1.25rem; height: 1.25rem; color: #F59E0B; fill: #F59E0B; }
.icon-white { color: #ffffff; }
/* ---------- Buttons ---------- */
.btn {
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -5px rgba(39, 154, 241, 0.3); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(39, 154, 241, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3BA4F4, #1221E5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}
.btn-outline:hover {
  background: rgba(39, 154, 241, 0.1);
  box-shadow: none;
}
.btn-dark {
  background: var(--primary-dark);
  color: var(--bg-light);
}
.btn-dark:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(246, 248, 255, 0.4);
}
.btn-block { width: 100%; }
/* ---------- Header & Logos ---------- */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.logos-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo-main {
  height: 32px;
  width: auto;
}
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
.logo-secondary {
  height: 22px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 2rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(900px 600px at 85% -10%, rgba(39, 154, 241, 0.22) 0%, rgba(15, 23, 42, 0) 70%), #0b1626;
}
.hero-bg-shape {
  position: absolute;
  top: -300px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(39,154,241,0.15) 0%, rgba(15,23,42,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1.5px solid rgba(39, 154, 241, 0.55);
  color: #eaf2ff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.25rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.icon-badge { width: 1rem; height: 1rem; color: var(--primary-blue); flex-shrink: 0; }
.hero-title { font-size: 2.5rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 1.5rem; color: var(--primary-dark); }
.hero-title-highlight { color: var(--primary-blue); position: relative; display: inline-block; }
.hero-title-highlight::after {
  content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 8px;
  background: rgba(39, 154, 241, 0.2); z-index: -1;
}
.hero-subtitle { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 2rem; }
.hero-highlights { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.highlight-row { display: flex; align-items: center; gap: 0.75rem; font-size: 1.125rem; color: var(--primary-dark); font-weight: 500; }
.highlight-icon-wrap { 
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; background: rgba(39, 154, 241, 0.15); 
}
.highlight-icon-wrap--green { background: rgba(52, 211, 153, 0.15); }
.icon-success { color: var(--success-green); }
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
.btn-hero-primary { padding: 1.25rem 2.5rem; font-size: 1.25rem; }
.btn-hero-outline { padding: 0.85rem 1.75rem; font-size: 1rem; }
.hero-illustration { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(138, 145, 157, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}
.hero-card-img .hero-image-actual { width: 100%; height: auto; display: block; border-radius: 0; }
.promo-glass {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  left: auto;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 78%;
  background: rgba(15, 23, 42, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}
.promo-glass-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 154, 241, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.promo-glass-icon .icon { width: 1.1rem; height: 1.1rem; }
.promo-glass-text { margin: 0; }
.promo-glass-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.2rem;
}
.promo-glass-bold {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  color: #ffffff;
}
/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin: 0 0 1rem; color: var(--primary-dark); }
.section-title--left { text-align: left; }
.section-subtitle { text-align: center; color: var(--text-gray); margin: 0 auto 3rem; font-size: 1.125rem; max-width: 600px;}
/* Promo */
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--accent-blue), #040a6b);
  color: #ffffff;
  padding: 3rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}
.promo-flex { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 2rem; position: relative; z-index: 1; }
.promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1); color: #ffffff;
  font-weight: 700; padding: .5rem 1rem; border-radius: 2rem;
  margin-bottom: 1rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.promo-title { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin: 0 0 1rem; color: #ffffff; }
.promo-text { font-size: 1.125rem; color: rgba(255, 255, 255, 0.8); margin: 0 0 2rem; max-width: 500px; }
/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step { position: relative; }
.step-card {
  padding: 2.5rem 2rem; border-radius: 1rem;
  background: var(--bg-light);
  border: 1px solid rgba(138, 145, 157, 0.15);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: all .3s ease;
  height: 100%;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3); border-color: rgba(39, 154, 241, 0.4); }
.step-num { 
  font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 1rem; 
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; background: rgba(39, 154, 241, 0.15); border-radius: 50%;
}
.step-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 .5rem; color: var(--primary-dark); }
.step-desc { color: var(--text-gray); margin: 0; line-height: 1.5; }
.step-connector { display: none; }
/* ---------- Cards de Simulação (Substituindo a Tabela) ---------- */
.sim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.sim-card {
  background: var(--bg-light);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(138, 145, 157, 0.15);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sim-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(8, 22, 201, 0.3);
  border-color: rgba(39, 154, 241, 0.5);
}
.sim-card-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px dashed rgba(138, 145, 157, 0.3); }
.sim-card-title { font-size: 0.875rem; color: var(--text-gray); text-transform: uppercase; font-weight: 700; margin: 0 0 0.5rem; }
.sim-card-value { font-size: 2rem; font-weight: 800; color: var(--primary-dark); margin: 0; }
.sim-card-body { flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.sim-row { display: flex; justify-content: space-between; align-items: center; }
.sim-label { color: var(--text-gray); font-size: 0.875rem; }
.sim-old-price { text-decoration: line-through; color: #f87171; font-weight: 500; }
.sim-new-price { font-size: 1.5rem; font-weight: 800; color: var(--success-green); }
.sim-save-badge {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success-green);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
}
.sim-card-action { margin-top: auto; }
/* Diferenciais */
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.diff-card {
  display: flex; gap: 1.5rem; padding: 2rem; border-radius: 1rem;
  background: var(--bg-light);
  border: 1px solid rgba(138, 145, 157, 0.15);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: all .3s ease;
}
.diff-card:hover { transform: translateX(5px); border-color: rgba(39, 154, 241, 0.4); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3); }
.diff-icon-wrap {
  flex-shrink: 0; width: 4rem; height: 4rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(39, 154, 241, 0.15);
}
.diff-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 .5rem; color: var(--primary-dark); }
.diff-desc { color: var(--text-gray); margin: 0; }
/* Social proof */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; margin-bottom: 4rem; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary-blue); margin-bottom: .25rem; }
.stat-label { font-size: 1.125rem; color: var(--text-gray); margin: 0; font-weight: 500; }
.testimonial {
  background: var(--bg-light);
  border: 1px solid rgba(138, 145, 157, 0.15);
  padding: 3rem; border-radius: 1.5rem;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.stars { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.testimonial-text { font-size: 1.5rem; font-weight: 500; color: var(--primary-dark); margin: 0 0 1.5rem; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--text-gray); margin: 0; }
/* Form + FAQ */
.form-faq-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.form-card {
  background: var(--bg-light);
  border: 1px solid rgba(138, 145, 157, 0.15);
  padding: 2.5rem; border-radius: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}
.form-fields { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.form-fields input {
  width: 100%; padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(138, 145, 157, 0.2);
  border-radius: 0.5rem; color: var(--primary-dark); font-size: 1rem; font-family: inherit;
  transition: all 0.2s ease;
}
.form-fields input::placeholder { color: var(--text-gray); }
.form-fields input:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(39, 154, 241, 0.2); background: var(--white); }
.form-feedback {
  margin-top: 1rem; padding: 1rem;
  background: rgba(52, 211, 153, 0.15); border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: .5rem; color: var(--success-green); font-size: .875rem; font-weight: 500;
}
.form-hint { font-size: .75rem; color: var(--text-gray); text-align: center; margin: 1rem 0 0; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg-light);
  border: 1px solid rgba(138, 145, 157, 0.15);
  padding: 1.25rem; border-radius: 0.75rem; cursor: pointer;
  transition: all .2s ease;
}
.faq-item:hover { border-color: var(--primary-blue); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2); }
.faq-question {
  font-weight: 700; color: var(--primary-dark);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; font-size: 1.125rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--primary-blue); }
.faq-arrow { transition: transform .2s ease; font-size: 1rem; color: var(--text-gray); }
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer { color: var(--text-gray); margin: 1rem 0 0; font-size: 1rem; line-height: 1.6; }
/* CTA final */
.cta-final { padding: 5rem 0; background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue)); color: #ffffff; }
.cta-final-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 1rem; color: #ffffff; }
.cta-final-text { font-size: 1.25rem; font-weight: 500; margin: 0 0 2.5rem; opacity: 0.9; }
/* Footer */
.footer { padding: 4rem 0 2rem; background: #0f172a; color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-title { margin: 0 0 1.5rem; }
.footer-title img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9;}
.footer-links { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-links a { display: flex; align-items: center; gap: .75rem; color: #cbd5e1; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--primary-blue); }
.footer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem; border-radius: 1rem;
}
.footer-card-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-card-title img { height: 24px; width: auto; filter: brightness(0) invert(1); }
.footer-card-text { color: #94a3b8; margin: 0 0 1.5rem; font-size: 0.875rem; line-height: 1.6; }
.footer-check { display: flex; gap: .75rem; align-items: center; }
.footer-check span { font-size: .875rem; color: #cbd5e1; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; }
.footer-bottom p { text-align: center; color: #64748b; font-size: .875rem; margin: 0; }
.footer-bottom a { color: var(--primary-blue); text-decoration: none; margin-left: .5rem; }
.footer-bottom a:hover { text-decoration: underline; }
/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .header-top { padding: 1.5rem 0; }
  .logo-main { height: 48px; }
  .logo-secondary { height: 28px; }
  .hero { padding: 1.5rem 0 6rem; }
  .hero-title { font-size: 4rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-ctas { flex-direction: row; align-items: center; }
  .hero-card-img { max-width: 460px; }
  .promo-glass-bold { font-size: 1rem; }
  .promo-glass-eyebrow { font-size: 0.75rem; }
  .section { padding: 6rem 0; }
  .section-title { font-size: 3rem; }
  .promo-flex { flex-direction: row; align-items: center; }
  .promo-title { font-size: 3rem; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-connector { 
    display: block; position: absolute; top: 4rem; right: -1rem; 
    width: 2rem; height: 2px; background: rgba(138, 145, 157, 0.3); z-index: 0;
  }
  .sim-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .form-faq-grid { grid-template-columns: 1fr 1fr; }
  .cta-final { padding: 6rem 0; }
  .cta-final-title { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}