/* ============================================================
   Grupo Catapulta — Mergulho Rápido
   Paleta da marca + tipografia Baloo 2 / Inter
   ============================================================ */

:root {
  /* Paleta da marca */
  --coral:  #ff9aa2;
  --peach:  #ffd3b5;
  --green:  #b5d6a7;
  --blue:   #a7c7e7;
  --purple: #e6c6ff;

  /* Tons de apoio (derivados, para contraste e CTAs) */
  --coral-deep: #e8606b;   /* CTA / hover — contraste com texto branco */
  --coral-ink:  #b23a44;   /* títulos/realces sobre fundo claro */
  --ink:        #2c2b35;   /* texto principal */
  --ink-soft:   #565463;   /* texto secundário */
  --line:       #ece9f1;   /* divisórias */
  --bg:         #ffffff;
  --bg-soft:    #fdf7f6;   /* seções suaves */
  --bg-cream:   #fffaf6;

  --radius:     22px;
  --radius-sm:  14px;
  --shadow:     0 18px 40px -18px rgba(60, 40, 60, .25);
  --shadow-sm:  0 8px 22px -12px rgba(60, 40, 60, .25);
  --maxw:       1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .plan__price, .topbar__brand {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -.01em;
}

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- Realces ---------- */
.hl { color: var(--coral-ink); }
.hl--coral { color: var(--coral-deep); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(232, 96, 107, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(232, 96, 107, .8); }
.btn--outline {
  background: #fff;
  color: var(--coral-ink);
  border-color: var(--coral);
}
.btn--outline:hover { transform: translateY(-2px); background: var(--bg-cream); }
.btn--lg { padding: 18px 40px; font-size: 1.12rem; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-block;
  font-weight: 600;
  font-size: .86rem;
  padding: 7px 16px;
  border-radius: 100px;
  color: var(--ink);
}
.chip--coral  { background: var(--coral); }
.chip--peach  { background: var(--peach); }
.chip--green  { background: var(--green); }
.chip--blue   { background: var(--blue); }
.chip--purple { background: var(--purple); }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.topbar.is-visible { transform: translateY(0); }
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 1.05rem;
}
.topbar__logo { width: 34px; height: 34px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,154,162,.30), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(167,199,231,.32), transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(230,198,255,.28), transparent 50%),
    radial-gradient(circle at 8% 88%, rgba(181,214,167,.30), transparent 42%),
    var(--bg-cream);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__logo {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 18px rgba(60,40,60,.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero__title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  max-width: 640px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__meta { font-size: .92rem; color: var(--ink-soft); font-weight: 500; }

/* Onda divisória */
.wave--bottom {
  position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px;
  background: var(--bg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: cover; mask-size: cover;
}

/* ---------- Seções ---------- */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.lead { font-size: clamp(1.08rem, 2.2vw, 1.28rem); color: var(--ink-soft); margin-bottom: 20px; }
.section p + p { margin-top: 16px; }

/* ---------- Cards de dor ---------- */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0; }
.pain-card {
  background: #fff; border-radius: var(--radius-sm); padding: 26px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
}
.pain-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: color-mix(in srgb, var(--c) 35%, #fff);
  font-size: 1.7rem; margin-bottom: 14px;
}
.pain-card p { font-size: 1rem; }

/* ---------- Quote ---------- */
.quote {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--coral-ink);
  text-align: center;
  line-height: 1.4;
  margin: 40px auto;
  max-width: 720px;
  position: relative;
  padding: 0 20px;
}
.quote--center { color: var(--ink); }

/* ---------- Shift (de / para) ---------- */
.shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin: 40px 0 30px;
}
.shift__col { border-radius: var(--radius); padding: 28px 26px; }
.shift__col--old { background: #f4f1f5; border: 1px dashed #cfc8d6; }
.shift__col--new {
  background: linear-gradient(160deg, rgba(181,214,167,.5), rgba(167,199,231,.4));
  border: 1px solid rgba(181,214,167,.8);
}
.shift__tag {
  display: inline-block; font-weight: 700; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 14px; padding: 4px 12px; border-radius: 100px; background:#fff;
}
.shift__col--old .shift__tag { color: var(--ink-soft); }
.shift__col--new .shift__tag { color: #3c7a2e; }
.shift__col ul { list-style: none; }
.shift__col li { padding: 8px 0 8px 28px; position: relative; color: var(--ink); }
.shift__col--old li::before { content: '✕'; position: absolute; left: 0; color: #b9a; font-weight: 700; }
.shift__col--new li::before { content: '✓'; position: absolute; left: 0; color: #4a9c38; font-weight: 700; }
.shift__arrow { align-self: center; font-size: 2rem; color: var(--coral-deep); }

/* ---------- Feature / oferta ---------- */
.section--feature {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,211,181,.35), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(167,199,231,.28), transparent 45%),
    var(--bg);
}
.feature__head { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.feature__head .chip { margin-bottom: 18px; }
.feature__subtitle {
  text-align: center; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 30px;
}
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__num {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.5rem;
  color: var(--accent); margin-bottom: 8px;
}
.card h4 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 1rem; }

/* ---------- Lista de features ---------- */
.features-list { list-style: none; margin-top: 30px; display: grid; gap: 12px; }
.features-list li {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 22px; font-size: 1.08rem; color: var(--ink); box-shadow: var(--shadow-sm);
}
.features-list__ico { font-size: 1.4rem; flex-shrink: 0; }

/* ---------- Hosts ---------- */
.hosts { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.hosts__photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  position: relative; background: linear-gradient(160deg, var(--coral), var(--purple));
}
.hosts__photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,154,162,.15), rgba(167,199,231,.15)); z-index: 1;
}
.hosts__photo img { width: 100%; display: block; position: relative; z-index: 0; }
.ticks { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.ticks li {
  position: relative; padding-left: 34px; color: var(--ink); font-weight: 500;
}
.ticks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #2f6a22; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Pricing ---------- */
.section--pricing {
  background:
    radial-gradient(circle at 50% 0%, rgba(230,198,255,.30), transparent 45%),
    var(--bg-soft);
}
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.plan {
  background: #fff; border-radius: var(--radius); padding: 36px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured {
  border: 2px solid var(--coral);
  box-shadow: 0 24px 50px -20px rgba(232,96,107,.5);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff; font-weight: 700; font-size: .8rem; padding: 6px 18px; border-radius: 100px;
  font-family: 'Baloo 2', sans-serif; box-shadow: 0 8px 16px -8px rgba(232,96,107,.8);
}
.plan__name { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.plan__desc { font-size: .96rem; min-height: 48px; margin-bottom: 16px; }
.plan__price {
  font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.plan__currency { font-size: 1.3rem; vertical-align: super; margin-right: 4px; color: var(--ink-soft); }
.plan__cents { font-size: 1.4rem; }
.plan__period { font-size: 1.1rem; color: var(--ink-soft); font-weight: 600; }
.plan__note { font-size: .9rem; color: var(--ink-soft); margin-bottom: 24px; min-height: 40px; }
.plan__btn { margin-top: auto; width: 100%; }
.plans__legend { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-top: 22px; }

/* ---------- CTA final ---------- */
.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,154,162,.25), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(167,199,231,.25), transparent 45%),
    var(--bg-cream);
}

/* ---------- Rodapé ---------- */
.footer { background: var(--ink); color: #fff; padding: 50px 0; text-align: center; }
.footer__logo { width: 56px; height: 56px; margin: 0 auto 14px; }
.footer__brand { color: #fff; font-weight: 600; font-family: 'Baloo 2', sans-serif; }
.footer__fine { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 6px; }

/* ---------- CTA flutuante (mobile) ---------- */
.floating-cta {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 90;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff; font-family: 'Baloo 2', sans-serif; font-weight: 700;
  text-decoration: none; padding: 15px 38px; border-radius: 100px;
  box-shadow: 0 14px 30px -8px rgba(232,96,107,.8);
  transition: transform .3s ease; display: none;
}
.floating-cta.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Animação de reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 880px) {
  .pains { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .shift { grid-template-columns: 1fr; }
  .shift__arrow { transform: rotate(90deg); }
  .hosts { grid-template-columns: 1fr; gap: 30px; }
  .hosts__photo { max-width: 420px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plan--featured { transform: none; order: -1; }
  .plan--featured:hover { transform: translateY(-4px); }
  .floating-cta { display: inline-flex; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 90px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn--lg { padding: 16px 30px; font-size: 1.05rem; }
  .topbar__brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
