/* ================================
   DESIGN SYSTEM
================================ */
:root {
  --primary: #6d28d9;
  --primary-light: #8b5cf6;
  --primary-soft: #ede9fe;

  --dark: #0f172a;
  --dark-soft: #1e293b;

  --text: #334155;
  --muted: #64748b;

  --bg: #f8fafc;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --space: 70px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 16px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 40px 80px rgba(0,0,0,.12);
}

/* ================================
   RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.0;
}

.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}

/* ================================
   HEADER
================================ */
/* =====================================================
   HEADER — NÃO FIXO
===================================================== */
.header {
  position: relative; /* ou static */
  top: auto;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  transition: none;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img{
  width: 190px;
  align-items: center;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}



nav a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}

nav a:hover {
  color: var(--dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

.btn.big {
  padding: 14px 28px;
  font-size: 16px;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(109,40,217,.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(109,40,217,.45);
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  border: 2px solid var(--primary-soft);
}

.btn.ghost:hover {
  background: var(--primary-soft);
}

/* ================================
   HERO
================================ */
.hero {
  padding: var(--space) 0 100px;
  background:
    radial-gradient(circle at top right, #ede9fe 0%, transparent 40%),
    radial-gradient(circle at bottom left, #ddd6fe 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  margin-top: 18px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--dark);
}

.hero p {
  margin: 26px 0 36px;
  max-width: 520px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.metrics {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.metrics div strong {
  font-size: 24px;
  color: var(--dark);
  display: block;
}

.metrics div span {
  font-size: 14px;
  color: var(--muted);
}

.hero-mockup img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ================================
   LOGOS
================================ */
.logos {
  padding: 60px 0;
}

.logos p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  text-align: center;
  color: #94a3b8;
  font-weight: 600;
}

/* ================================
   SEÇÃO FEATURES AVANÇADA
================================ */
.features-advanced {
  padding: var(--space) 0;
  background:
    radial-gradient(circle at top left, #ede9fe 0%, transparent 35%),
    #ffffff;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-head h2 {
  font-size: 42px;
  letter-spacing: -0.8px;
  color: var(--dark);
}

.section-head p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

.features-grid-advanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-box {
  background: #fff;
  padding: 42px 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(109,40,217,.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .35s;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-box .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-box .icon i {
  font-size: 22px;
  color: var(--primary);
}
.feature-box .icon {
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    #ffffff
  );
}


.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-box p {
  color: var(--muted);
  line-height: 1.6;
}

/* ================================
   COMO FUNCIONA (TIMELINE)
================================ */
.how-it-works {
  padding:var(--space) 0;
  background: var(--bg);
}

.steps-timeline {
  max-width: 820px;
  margin: auto;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--primary-light)
  );
}

.step-advanced {
  display: flex;
  gap: 40px;
  position: relative;
  padding: 40px 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
  );
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(109,40,217,.45);
}

.step-content {
  background: #fff;
  padding: 30px 34px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--dark);
}

.step-content p {
  color: var(--muted);
}
/* ================================
   DEPOIMENTOS
================================ */
.testimonials {
  padding: var(--space) 0;
  background:
    radial-gradient(circle at top center, #ede9fe 0%, transparent 40%),
    #ffffff;
}

.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.pill {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.testimonials-head h2 {
  font-size: 44px;
  letter-spacing: -0.9px;
  color: var(--dark);
}

.testimonials-head h2 span {
  color: var(--primary);
}

.testimonials-head p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial-card::after {
  content: "❝";
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 60px;
  color: #ede9fe;
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #7c3aed;
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-footer strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-footer span {
  font-size: 13px;
  color: var(--muted);
}

.verified {
  margin-left: auto;
  color: var(--primary);
  font-size: 18px;
}
/* ================================
   PLATAFORMA
================================ */
.platform {
  padding: var(--space) 0;
  background:
    radial-gradient(circle at top center, #ede9fe 0%, transparent 45%),
    var(--bg);
}

.platform-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.platform-head h2 {
  font-size: 44px;
  letter-spacing: -0.9px;
  color: var(--dark);
}

.platform-head h2 span {
  color: var(--primary);
}

.platform-head p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

/* PREVIEW */
.platform-preview {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 80px;
  gap: 0;
}

.platform-preview img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.nav-preview {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-md);
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

.nav-preview.left {
  left: -22px;
}

.nav-preview.right {
  right: -22px;
}

/* FEATURES */
.platform-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.platform-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.platform-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.platform-card .icon i {
  font-size: 22px;
  color: var(--primary);
}

.platform-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

.platform-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .platform-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-preview.left {
    left: -10px;
  }

  .nav-preview.right {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .platform {
    padding: 30px 0;
  }

  .platform-head h2 {
    font-size: 34px;
  }

  .platform-preview {
    margin-bottom: 60px;
  }

  .nav-preview {
    display: none;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }
}


/* ================================
   RESPONSIVO
================================ */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-head h2 {
    font-size: 34px;
  }
}


/* ================================
   RESPONSIVO
================================ */
@media (max-width: 900px) {
  .features-grid-advanced {
    grid-template-columns: 1fr;
  }

  .steps-timeline::before {
    left: 24px;
  }

  .step-advanced {
    gap: 20px;
  }
}


/* ================================
   PRICING
================================ */
.pricing {
  background: var(--bg);
  padding: var(--space) 0;
}

.pricing h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.price-card.highlight {
  border: 2px solid var(--primary-light);
  box-shadow: 0 30px 80px rgba(109,40,217,.25);
}

.price {
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0;
  color: var(--dark);
}

.price-card ul {
  list-style: none;
  margin: 24px 0 36px;
}

.price-card li {
  margin-bottom: 10px;
  color: var(--muted);
}




/* ================================
   FAQ
================================ */
.faq {
  padding: var(--space) 0;
  background:
    radial-gradient(circle at top center, #ede9fe 0%, transparent 45%),
    #ffffff;
}

.faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.faq-head h2 {
  font-size: 42px;
  letter-spacing: -0.8px;
  color: var(--dark);
}

.faq-head h2 span {
  color: var(--primary);
}

.faq-head p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow .3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  color: var(--primary);
  transition: transform .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}
/* ================================
   NEWSLETTER / CAPTURA
================================ */
.newsletter {
  padding: var(--space) 0;
}

.newsletter-box {
  background: linear-gradient(135deg, #7c6df6, #6b5cf6);
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  color: #fff;
}

/* TEXTO */
.newsletter-text h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.newsletter-text h3 {
  font-size: 34px;
  line-height: 1.2;
}

.newsletter-text strong {
  font-weight: 900;
}

/* FORM */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.newsletter-form .field {
  display: flex;
  flex-direction: column;
}

.newsletter-form label {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.newsletter-form input {
  height: 48px;
  border-radius: 6px;
  border: none;
  padding: 0 14px;
  font-size: 15px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  margin-top: 14px;
  height: 52px;
  border-radius: 10px;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}




/* ================================
   CTA
================================ */
.cta {
  padding: var(--space) 0;
}

.cta-box {
  background:
    radial-gradient(circle at top right, #ede9fe 0%, transparent 40%),
    linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 32px;
  padding: 90px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-size: 44px;
  margin-bottom: 14px;
}

.cta-box p {
  opacity: .9;
  margin-bottom: 32px;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: var(--space) 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-top: 10px;
}


/* =========================================
   RESPONSIVIDADE — TABLET (≤ 1024px)
========================================= */
@media (max-width: 1024px) {

  .hero {
    padding: 90px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .metrics {
    gap: 24px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .features-grid-advanced,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline {
    max-width: 100%;
    padding-left: 12px;
  }

  .cta-box {
    padding: 70px;
  }
}


/* =========================================
   RESPONSIVIDADE — MOBILE (≤ 768px)
========================================= */
@media (max-width: 768px) {

  /* HEADER */
  .nav {
    height: 60px;
    gap: 16px;
  }
  .nav-links {
    display: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  /* HERO */
  .hero {
    padding: 24px 0 60px;
    padding-top: 24px !important;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .header{
    padding-top: 0px !important;
  }
  .metrics {
    gap: 18px;
  }

  /* SECTIONS */
  .features-advanced,
  .how-it-works,
  .testimonials,
  .pricing,
  .faq,
  .cta {
    padding: 64px 0;
  }

  .section-head h2,
  .testimonials-head h2,
  .faq-head h2,
  .pricing h2 {
    font-size: 32px;
  }

  .section-head p,
  .testimonials-head p,
  .faq-head p {
    font-size: 16px;
  }

  /* GRIDS */
  .features-grid-advanced,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* FEATURES */
  .feature-box {
    padding: 32px 28px;
  }

  .steps-timeline::before {
    display: none;
  }

  .steps-timeline {
    padding-left: 0;
  }

  .step-advanced {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-left: 0;
  }

  .step-content {
    width: 100%;
    padding: 22px 20px;
  }
}
  /* TESTIMONIALS */
  .testimonial-card {
    padding: 32px 28px;
  }

  /* PRICING */
  .price-card {
    padding: 32px;
  }

  /* FAQ */
  .faq-question {
    padding: 22px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 15px;
  }

  /* CTA */
  .cta-box {
    padding: 60px 28px;
  }

  .cta-box h2 {
    font-size: 34px;
  }



/* =========================================
   RESPONSIVIDADE — MOBILE PEQUENO (≤ 480px)
========================================= */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 32px;
  }

  .badge {
    font-size: 13px;
  }

  .btn.big {
    width: 100%;
    justify-content: center;
  }

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

  .metrics div strong {
    font-size: 20px;
  }

  .section-head h2,
  .testimonials-head h2,
  .faq-head h2 {
    font-size: 28px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}
/* =========================================
   DARK THEME — SEM GRADIENTES FEIOS
========================================= */
body.dark {

  /* fundo sólido elegante */
  --bg: #0e1324;
  --white: #151a2e;

  --dark: #f1f5f9;
  --dark-soft: #e5e7eb;

  --text: #cbd5f5;
  --muted: #94a3b8;

  --primary: #5945f6;
  --primary-light: #a5b4fcdb;
  --primary-soft: rgba(139,124,246,.14);

  --shadow-sm: 0 6px 14px rgba(0,0,0,.35);
  --shadow-md: 0 20px 40px rgba(0,0,0,.45);
  --shadow-lg: 0 40px 80px rgba(0,0,0,.55);
}

/* REMOVE GRADIENTES DE FUNDO NO DARK */
body.dark .hero,
body.dark .features-advanced,
body.dark .testimonials,
body.dark .faq,
body.dark .platform {
  background: var(--bg) !important;
}

/* HEADER */
body.dark .header {
  background: rgba(14,19,36,.92);
  border-bottom: 1px solid #1f2545;
}

/* CARDS */
body.dark .feature-box,
body.dark .testimonial-card,
body.dark .price-card,
body.dark .platform-card,
body.dark .faq-item,
body.dark .step-content {
  background: var(--white);
  border: 1px solid #4e66f2;
}

/* ÍCONES (mais suaves) */
body.dark .icon,
body.dark .step-number {
  background: rgb(116, 100, 241);
}
body.dark span.icon{
  background: none
}

/* CTA — ÚNICO LUGAR COM GRADIENTE */
body.dark .cta-box {
  background: linear-gradient(
    135deg,
    #7c6df6,
    #6b5cf6
  );
}body.dark .icon i {
  color: #dbe4ff;
}

/* REMOVE GLOW EXAGERADO */
body.dark .feature-box::before {
  display: none;
}
body.dark footer {
  border-top: 1px solid #1f2545;
  background: rgba(14,19,36,.92);
}
@media (max-width: 900px) {
  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 40px;
  }

  .newsletter-text h2 {
    font-size: 30px;
  }

  .newsletter-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .newsletter-box {
    padding: 50px 26px;
    border-radius: 28px;
  }

  .newsletter-text h2 {
    font-size: 26px;
  }

  .newsletter-text h3 {
    font-size: 24px;
  }
}
/* =====================================================
   SCROLL ANIMATIONS (PREMIUM)
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(.22,.61,.36,1),
    transform 0.7s cubic-bezier(.22,.61,.36,1),
    filter 0.7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* =====================================================
   HEADER SCROLLED (REFINADO)
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    background-color 0.3s ease;
}



/* =====================================================
   FAQ ACCORDION (SMOOTH)
===================================================== */
.faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   FOOTER SOCIALS
================================ */
.footer-brand {
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  transition: all .25s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-socials a {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* FOOTER LINKS */
.footer-links a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--dark);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    text-align: left;
  }
}
/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom .dev {
  margin-left: 6px;
}

.footer-bottom strong {
  color: var(--dark);
}

/* DARK MODE (se estiver usando body.dark) */
body.dark .footer-bottom {
  border-color: #1f2937;
}

body.dark .footer-bottom strong {
  color: #fff;
}
.preview-slider img { display: none; }
.preview-slider img.active { display: block; }

/* ================================
   FORM SUCCESS MESSAGE
================================ */
.form-success {
  margin-top: 24px;
  padding: 28px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #065f46;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.form-success i {
  font-size: 36px;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.form-success p {
  font-size: 15px;
  opacity: .9;
}

/* DARK MODE */
body.dark .form-success {
  background: #022c22;
  color: #6ee7b7;
}
/* ================================
   LEAD WHATSAPP SECTION
================================ */
.lead-whatsapp {
  padding: var(--space) 0;
  background: var(--bg);
}

.lead-whatsapp-box {
  background: var(--white);
  border-radius: 36px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

/* TEXTO */
.lead-whatsapp-text h2 {
  font-size: 42px;
  margin: 20px 0 18px;
  color: var(--dark);
  line-height: 1.15;
}

.lead-whatsapp-text h2 span {
  color: var(--primary);
}

.lead-whatsapp-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}

/* BENEFÍCIOS */
.lead-benefits {
  list-style: none;
  padding: 0;
}

.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.lead-benefits i {
  color: var(--primary);
}

/* CTA */
.lead-whatsapp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-whatsapp i {
  font-size: 26px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 26px 70px rgba(37, 211, 102, .55);
}

.lead-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 900px) {
  .lead-whatsapp-box {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 50px;
    text-align: center;
  }

  .lead-whatsapp-text h2 {
    font-size: 34px;
  }

  .lead-whatsapp-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .lead-benefits {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .lead-whatsapp-box {
    padding: 48px 26px;
  }

  .lead-whatsapp-text h2 {
    font-size: 28px;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
