:root {
  /* Playful Geometric tokens, com a paleta real da Egalite no lugar de violeta/rosa/âmbar/menta */
  --background: #fff3e9;     /* cream/pêssego claro */
  --foreground: #06262f;     /* slate escuro da marca */
  --muted: #f1ece2;
  --muted-foreground: #62748e;
  --accent: #006072;         /* teal profundo - cor de ação primária */
  --accent-foreground: #ffffff;
  --secondary: #f47f46;      /* laranja - pop divertido */
  --tertiary: #f7bfac;       /* pêssego profundo - otimismo */
  --quaternary: #228a8f;     /* teal claro - frescor */
  --border: #e7d9c9;
  --card: #ffffff;
  --ring: #006072;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --bw: 2px;

  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--foreground);
}

h1 { font-size: clamp(34px, 6vw, 60px); }
h2 { font-size: clamp(26px, 4.5vw, 38px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; font-weight: 500; color: var(--foreground); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; position: relative; }
section { padding: 96px 0; position: relative; overflow: hidden; }

/* ---- Padrões decorativos ---- */
.dot-grid {
  background-image: radial-gradient(var(--muted-foreground) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .25;
  position: absolute;
  z-index: 0;
}

.blob-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-tri {
  position: absolute;
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid var(--secondary);
  opacity: .5;
  z-index: 0;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--background);
  border-bottom: var(--bw) solid var(--foreground);
  height: 84px;
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 19px; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}

/* ---- Botões "Candy" ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 12px 14px 26px;
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--bounce), box-shadow .3s var(--bounce);
}
.btn-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 4px 4px 0 0 var(--foreground);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--foreground); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--foreground); }

.btn-secondary {
  background: transparent; color: var(--foreground);
  box-shadow: none;
  padding: 14px 26px;
}
.btn-secondary:hover { background: var(--tertiary); }

.btn-warm {
  background: var(--secondary); color: #fff;
  box-shadow: 4px 4px 0 0 var(--foreground);
}
.btn-warm:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--foreground); }
.btn-warm:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--foreground); }

/* ---- Badge / eyebrow ---- */
.badge {
  display: inline-block;
  background: #fff;
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--foreground);
  color: var(--tertiary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ---- Hero ---- */
.hero { padding-top: 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.highlight {
  background: var(--tertiary);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.trust-bar { display: flex; gap: 18px; flex-wrap: wrap; margin: 20px 0; font-weight: 700; font-size: 14px; }
.trust-bar span::before { content: "✓ "; color: var(--accent); }

.hero-image-wrap {
  position: relative;
  z-index: 1;
}
.hero-image-frame { /* frame removido — imagem sem fundo */ }
.hero-image-frame img { width: 100%; display: block; }

/* ---- Bloco de autoridade (fundadoras) ---- */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 680px) {
  .founders-grid { grid-template-columns: 1fr; }
}

.founder-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--foreground);
  border: var(--bw) solid var(--foreground);
}
.founder-card-img img {
  width: 100%;
  display: block;
}

/* ---- Seções claras com eyebrow ---- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; position: relative; z-index: 1; }

/* ---- Problema vs Solução ---- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
@media (max-width: 760px) { .split-grid { grid-template-columns: 1fr; } }

.card-problem {
  background: var(--muted);
  border: var(--bw) dashed var(--muted-foreground);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.card-solution {
  background: #fff;
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  padding: 32px;
  box-shadow: 8px 8px 0 0 var(--tertiary);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { margin-bottom: 10px; font-weight: 600; padding-left: 30px; position: relative; }
.check-list li .icon-circle { position: absolute; left: 0; top: -2px; width: 22px; height: 22px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size:12px; color:#fff; }
.check-list.yes li .icon-circle { background: var(--accent); }
.check-list.no li .icon-circle { background: #b4554f; }

/* ---- Cards "Sticker" ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; position: relative; z-index: 1; }

.sticker-card {
  background: var(--card);
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0 0 var(--border);
  padding: 32px 24px 24px;
  position: relative;
  transition: transform .3s var(--bounce), box-shadow .3s var(--bounce);
}
.sticker-card:hover { transform: rotate(-1deg) scale(1.02); }

.sticker-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: var(--bw) solid var(--foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  position: absolute;
  top: -26px; left: 24px;
  background: var(--secondary);
}
.sticker-card:nth-child(2) .sticker-icon { background: var(--tertiary); }
.sticker-card:nth-child(3) .sticker-icon { background: var(--quaternary); }
.sticker-card:nth-child(4) .sticker-icon { background: var(--accent); color: #fff; }
.sticker-card:nth-child(5) .sticker-icon { background: var(--secondary); }
.sticker-card:nth-child(6) .sticker-icon { background: var(--tertiary); }

/* ---- Como funciona (steps) ---- */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 1; }
@media (max-width: 760px) { .steps-flow { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: var(--bw) solid var(--foreground);
  display: flex; align-items: center; justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800; font-size: 22px;
  margin: 0 auto 16px;
  background: var(--secondary); color: #fff;
}
.step:nth-child(2) .step-circle { background: var(--tertiary); color: var(--foreground); }
.step:nth-child(3) .step-circle { background: var(--quaternary); color: #fff; }

/* ---- Depoimentos — Fan Carousel ---- */
.testimonials-section {
  background: var(--muted);
  overflow: visible;
}

.fan-stage {
  position: relative;
  height: 420px;
  /* wide enough for 3 separated cards at full spread */
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
}

@media (max-width: 767px) {
  .fan-stage { height: 330px; }
}

@media (max-width: 479px) {
  .fan-stage { height: 260px; }
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 24px;
  will-change: transform;
  cursor: default;
  user-select: none;
}

.whats-card-fan {
  width: 200px;
  background: var(--card);
  border: 2px solid var(--foreground);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.10),
    0 16px 40px rgba(0,0,0,0.16),
    0 28px 60px rgba(0,0,0,0.10);
}

@media (max-width: 767px) {
  .whats-card-fan { width: 160px; border-radius: 16px; }
}

@media (max-width: 479px) {
  .whats-card-fan { width: 112px; border-radius: 14px; }
}

.whats-card-fan img {
  width: 100%;
  display: block;
}

.testimonials-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 24px 0 0;
}

/* ---- Bônus ---- */
.bonus-card {
  background: #fff;
  border: var(--bw) dashed var(--secondary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 18px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.bonus-price { text-align: right; white-space: nowrap; }
.bonus-price .old { text-decoration: line-through; color: var(--muted-foreground); font-size: 14px; }
.bonus-price .new { color: var(--accent); font-weight: 800; font-size: 18px; }

/* ---- Oferta / Pricing ---- */
.offer-wrap { display: flex; justify-content: center; position: relative; z-index: 1; }
.offer-box {
  background: #fff;
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 56px 36px;
  box-shadow: 10px 10px 0 0 var(--foreground);
  max-width: 520px;
  position: relative;
}
.star-badge {
  position: absolute;
  top: -28px; right: -10px;
  background: var(--tertiary);
  border: var(--bw) solid var(--foreground);
  border-radius: 50%;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 12px;
  transform: rotate(15deg);
  line-height: 1.1;
}
.price-old { text-decoration: line-through; opacity: .6; font-size: 18px; }
.price-new { font-family: "Outfit", sans-serif; font-size: 56px; font-weight: 800; color: var(--accent); margin: 8px 0; }
.price-sub { font-size: 14px; color: var(--muted-foreground); margin-bottom: 28px; }

.includes-list { list-style: none; padding: 0; margin: 28px 0 0; text-align: left; display: inline-block; }
.includes-list li { margin-bottom: 10px; font-weight: 600; padding-left: 28px; position: relative; }
.includes-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

/* ---- Galeria ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.gallery img {
  width: 100%;
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 0 var(--border);
  transition: transform .3s var(--bounce);
  display: block;
}
.gallery img:hover { transform: rotate(-1deg) scale(1.03); }

@media (max-width: 640px) {
  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery img {
    flex-shrink: 0;
    width: 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}

.gallery-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 640px) {
  .gallery-dots { display: flex; }
}
.gdot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--foreground);
  cursor: pointer;
  transition: background .2s ease, transform .2s var(--bounce);
  flex-shrink: 0;
}
.gdot.active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ---- Garantia ---- */
.guarantee-box {
  background: var(--accent);
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-lg) var(--radius-lg) 4px var(--radius-lg);
  text-align: center;
  padding: 56px 32px;
  color: #fff;
  position: relative; z-index: 1;
}
.guarantee-box h2 { color: #fff; }
.guarantee-box p { color: #e3f3f1; }

/* ---- FAQ ---- */
.faq-item {
  border: var(--bw) solid var(--foreground);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
  background: #fff;
  position: relative; z-index: 1;
}
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin: 0; color: var(--muted-foreground); }

/* ---- CTA final ---- */
.final-cta { text-align: center; }

/* ---- Footer ---- */
footer { background: var(--foreground); color: #b7c4c8; padding: 48px 0 36px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0; text-align: center; }
.footer-logo { width: 200px; max-width: 55vw; display: block; margin: 0 auto; }
.footer-divider { width: 48px; border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 24px auto; }
.footer-copy { font-size: 13px; color: #b7c4c8; margin: 0 0 10px; }
.footer-links { font-size: 13px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; color: #b7c4c8; margin: 0; }
.footer-links a { color: #b7c4c8; text-decoration: none; }
.footer-links a:hover { color: var(--secondary); }
.footer-links span { opacity: 0.4; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
