/* =========================================================
   Simule — estilos globais
   Paleta e tipografia centralizadas em :root abaixo.
   Cores extraídas da identidade visual oficial (logo + print
   de referência): fundo #013E3B e verdes da marca.
   ========================================================= */

:root {
  --bg-dark: #013E3B;
  --bg-dark-alt: #073F3C;
  --bg-panel: rgba(255, 255, 255, 0.05);
  --bg-panel-strong: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.10);
  --border-soft-strong: rgba(255, 255, 255, 0.18);

  --brand-dark-green: #359E37;
  --brand-mid-green: #9AF63B;
  --brand-lime: #B9FB44;

  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);
  --text-on-dark-faint: rgba(255, 255, 255, 0.5);
  --text-on-lime: #06251F;

  --font-heading: 'Fredoka', 'Poppins', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.38);
  --shadow-lime: 0 14px 34px rgba(185, 251, 68, 0.22);
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-dark);
  background: var(--bg-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text-on-dark);
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

p { margin: 0 0 16px; color: var(--text-on-dark-muted); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.container--narrow { max-width: 780px; }

.section { padding: clamp(56px, 9vw, 112px) 0; }
.section--alt { background: var(--bg-dark-alt); }

.section__head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 14px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--brand-lime);
  color: var(--text-on-lime);
  box-shadow: var(--shadow-lime);
}
.btn--primary:hover { background: #c8ff5f; }

.btn--secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--border-soft-strong);
}
.btn--secondary:hover { border-color: var(--brand-lime); color: var(--brand-lime); }

.btn--whatsapp {
  background: #25D366;
  color: #06251F;
}
.btn--whatsapp:hover { background: #2fe374; }

.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 62, 59, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.header.is-scrolled {
  background: rgba(1, 46, 43, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border-bottom-color: var(--border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__image { height: 40px; width: auto; }
.logo__image--footer { height: 56px; }

.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}
.nav a:hover { color: var(--text-on-dark); }
.nav-cta { color: var(--text-on-lime) !important; }
@media (min-width: 721px) { .nav-cta { margin-left: 8px; } }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(24px, 4vw, 44px) 0 clamp(56px, 9vw, 104px); overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(185, 251, 68, 0.16), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  color: var(--text-on-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
}

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

.hero__subtitle { font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 560px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 26px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.88rem;
  color: var(--text-on-dark-faint);
}

.hero__media { position: relative; min-width: 0; }

.mockup {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.mockup__bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-soft);
}
.mockup__bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mockup__body { padding: clamp(20px, 3vw, 30px); }
.mockup__line--title {
  width: 55%; height: 16px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.16); margin-bottom: 22px;
}
.mockup__logos {
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(53, 158, 55, 0.18), rgba(185, 251, 68, 0.10));
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.mockup__logos-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 16px;
  animation: logo-scroll 32s linear infinite;
}
.logo-chip {
  flex: 0 0 auto;
  width: 88px;
  height: 56px;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
.logo-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mockup__logos-track { animation: none; }
}
.mockup__row { display: flex; gap: 12px; margin-bottom: 12px; }
.mockup__pill {
  flex: 1; height: 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.mockup__pill--full { flex: 2; }

.hero__stat {
  position: absolute;
  bottom: -22px;
  left: clamp(-8px, -2vw, -22px);
  background: var(--brand-lime);
  color: var(--text-on-lime);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lime);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 200px;
}
.hero__stat strong { font-family: var(--font-heading); font-size: 1.15rem; }
.hero__stat span { font-size: 0.78rem; opacity: 0.8; }

/* ---------- A dor (pain points) ---------- */
.pain-list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.pain-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 90, 90, 0.15);
  color: #FF7A7A;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.pain-item p { margin: 0; color: var(--text-on-dark); font-size: 0.98rem; }

.pain-resolve {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-on-dark);
  font-weight: 500;
}
.pain-resolve strong { color: var(--brand-lime); }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-soft-strong); }
.card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.card p { margin: 0; font-size: 0.95rem; }

/* ---------- Passos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
}
.step__number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--text-on-lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
}
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Blocos de recurso numerados ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-block:first-of-type { padding-top: 0; }
.feature-block:last-of-type { border-bottom: none; padding-bottom: 0; }

.feature-block--highlight {
  background: linear-gradient(135deg, rgba(185, 251, 68, 0.08), rgba(154, 246, 59, 0.03));
  border: 1px solid rgba(185, 251, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.feature-block__number {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--bg-panel-strong);
  border: 1px solid var(--border-soft-strong);
  color: var(--brand-lime);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-block__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.feature-block__title-row h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.tag-hero {
  background: var(--brand-lime);
  color: var(--text-on-lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.feature-block__desc { font-size: 1rem; color: var(--text-on-dark-muted); }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-on-dark);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-lime);
  font-weight: 700;
}

.result-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-panel);
  border-left: 3px solid var(--brand-lime);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}
.result-callout__label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--brand-lime);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.result-callout p { margin: 0; color: var(--text-on-dark); font-size: 0.95rem; }

/* ---------- Tabela comparativa ---------- */
.compare {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare__row + .compare__row { border-top: 1px solid var(--border-soft); }
.compare__row--head { background: rgba(255, 255, 255, 0.04); }
.compare__cell {
  padding: 20px 24px;
  font-size: 0.95rem;
}
.compare__row--head .compare__cell {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.compare__cell--old { color: var(--text-on-dark-faint); border-right: 1px solid var(--border-soft); }
.compare__cell--new { color: var(--text-on-dark); font-weight: 500; }
.compare__cell--old::before { content: "✕  "; color: #FF7A7A; }
.compare__cell--new::before { content: "✔  "; color: var(--brand-lime); }
.compare__row--head .compare__cell::before { content: none; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(135deg, rgba(53, 158, 55, 0.35), rgba(185, 251, 68, 0.12));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: clamp(64px, 9vw, 112px) 0;
  text-align: center;
}
.cta-final__inner { max-width: 720px; margin: 0 auto; }
.cta-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

/* ---------- Footer ---------- */
.footer { background: #012e2b; color: var(--text-on-dark-muted); padding: 64px 0 24px; }
.footer__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-soft);
}
.footer__brand { max-width: 360px; }
.footer__brand .logo { margin-bottom: 8px; }
.footer__brand p { color: var(--text-on-dark-faint); margin: 12px 0; font-size: 0.9rem; }
.footer__social { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__social a { font-size: 0.85rem; color: var(--text-on-dark-faint); }
.footer__social a:hover { color: var(--text-on-dark); }
.footer__col h4 { color: var(--text-on-dark); font-size: 0.9rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-on-dark-faint); margin-bottom: 10px; font-size: 0.88rem; }
.footer__col a:hover { color: var(--text-on-dark); }
.footer__bottom { padding-top: 24px; font-size: 0.8rem; color: var(--text-on-dark-faint); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #012e2b;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 95;
  border-top: 1px solid var(--border-soft);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: 0.85rem; color: var(--text-on-dark-muted); max-width: 640px; }
.cookie-bar a { text-decoration: underline; color: #fff; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsivo — breakpoints amplos para garantir boa leitura
   em qualquer tamanho de tela (desktop grande até celulares
   pequenos), sem depender de nenhum framework.
   ========================================================= */

@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 480px; margin: 0 auto; }
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #012e2b;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { flex-direction: column; gap: 32px; }

  .feature-block { grid-template-columns: 1fr; }
  .feature-block__number { margin-bottom: 4px; }

  .compare__row { grid-template-columns: 1fr; }
  .compare__cell--old { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .compare__row--head .compare__cell--new { display: none; }

  .hero__stat { position: static; margin-top: 20px; max-width: none; }
  .hero__ctas .btn, .cta-final__ctas .btn { width: 100%; }
}

@media (max-width: 420px) {
  .logo__image { height: 32px; }
  .section { padding: 48px 0; }
  .pain-item { padding: 16px 18px; }
}
