/* ============================================================
   iEstimule – Clube de Assinatura | Main Stylesheet
   Brand Colors:
   --cream:     #F7F1EA
   --beige:     #EDE5D8
   --coral:     #D97A63
   --green:     #8AAF8A
   --lavender:  #B8A9C9
   --peach:     #E9C2B8
   --yellow:    #F2D9A0
   --navy:      #2C3A4A
   --text:      #3D3D3D
   ============================================================ */

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

:root {
  --cream:      #F7F1EA;
  --beige:      #EDE5D8;
  --coral:      #D97A63;
  --coral-dark: #C0634D;
  --green:      #8AAF8A;
  --green-dark: #6D9A6D;
  --lavender:   #B8A9C9;
  --lavender-dark: #9A8AB0;
  --peach:      #E9C2B8;
  --yellow:     #F2D9A0;
  --navy:       #2C3A4A;
  --text:       #3D3D3D;
  --text-light: #6B7280;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(44,58,74,.08);
  --shadow-md:  0 6px 24px rgba(44,58,74,.10);
  --shadow-lg:  0 12px 40px rgba(44,58,74,.14);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.serif { font-family: 'Fredoka', sans-serif; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.highlight { color: var(--coral); }
.highlight-green { color: var(--green-dark); }

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(217,122,99,.3);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,122,99,.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(44,58,74,.2);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-secondary:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,241,234,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,58,74,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.logo-sub  { font-size: .65rem; color: var(--text-light); letter-spacing: .04em; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.navbar__nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .25s;
  border-radius: 2px;
}
.navbar__nav a:hover { color: var(--coral); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-entrar {
  display: flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 500; color: var(--navy);
  padding: 8px 16px; border-radius: 50px;
  border: 1.5px solid rgba(44,58,74,.2);
  transition: border-color .2s, color .2s;
}
.btn-entrar:hover { border-color: var(--coral); color: var(--coral); }

.btn-assine {
  display: flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600; color: var(--white);
  padding: 10px 20px; border-radius: 50px;
  background: var(--coral);
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 12px rgba(217,122,99,.3);
}
.btn-assine:hover { background: var(--coral-dark); transform: translateY(-1px); }

.navbar__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,194,184,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}

.hero__title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero__body {
  font-size: .95rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item > div { display: flex; flex-direction: column; }
.trust-item strong { font-size: .85rem; color: var(--navy); line-height: 1.2; }
.trust-item span   { font-size: .78rem; color: var(--text-light); }
.trust-icon { font-size: 1.1rem; }
.trust-green   { color: var(--green); }
.trust-coral   { color: var(--coral); }
.trust-pink    { color: #E88FAA; }

/* Hero image */
.hero__image-wrap { position: relative; }
.hero__photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(233,194,184,.18) 0%, rgba(184,169,201,.18) 100%);
}
.hero__photo {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero feature strip */
.hero__features {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 28px 32px;
  gap: 0;
  margin-bottom: 60px;
}
.feature-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 20px;
}
.feature-card:first-child { padding-left: 0; }
.feature-card:last-child  { padding-right: 0; }

.feature-divider {
  width: 1px;
  background: rgba(44,58,74,.08);
  align-self: stretch;
}
.feature-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-green   { background: #D4EAD4; color: var(--green-dark); }
.feature-peach   { background: #F2D4CC; color: var(--coral-dark); }
.feature-yellow  { background: #F2DFA0; color: #B8860B; }
.feature-lavender{ background: #DDD6E8; color: var(--lavender-dark); }

.feature-text { display: flex; flex-direction: column; gap: 4px; }
.feature-text strong { font-size: .92rem; color: var(--navy); font-weight: 600; }
.feature-text span   { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona {
  padding: 80px 0;
  background: var(--beige);
  position: relative;
}
.como-funciona::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D97A63' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-badge {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: var(--white);
}
.step-badge--green  { background: var(--green); }
.step-badge--coral  { background: var(--coral); }
.step-badge--purple { background: var(--lavender-dark); }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-top: 80px;
  color: var(--coral);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Phone mockup */
.step-visual { width: 100%; margin-bottom: 20px; display: flex; justify-content: center; }
.phone-mockup {
  width: 120px; height: 200px;
  background: var(--navy);
  border-radius: 18px;
  padding: 12px 10px;
  box-shadow: 0 8px 24px rgba(44,58,74,.3);
  transform: rotate(-4deg);
  position: relative;
}
.phone-screen {
  background: var(--cream);
  border-radius: 10px;
  height: 100%;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.phone-brand { font-family: 'Fredoka', sans-serif; font-size: .6rem; font-weight: 700; color: var(--navy); text-align: center; }
.phone-label { font-size: .55rem; font-weight: 600; color: var(--text-light); text-align: center; margin-bottom: 2px; }
.plan-option {
  background: var(--beige);
  border-radius: 6px;
  padding: 4px 6px;
  display: flex; justify-content: space-between;
  font-size: .5rem; font-weight: 500; color: var(--text);
}
.plan-option.active { background: var(--coral); color: white; }
.plan-price { font-weight: 700; }
.phone-btn {
  margin-top: 4px;
  background: var(--coral); color: white;
  border-radius: 6px; padding: 4px;
  font-size: .5rem; font-weight: 700; text-align: center;
}

/* Box mockup */
.box-mockup { width: 130px; }
.box-face { border-radius: 6px; }
.box-top {
  height: 20px;
  background: linear-gradient(135deg, #E8A87C, #D97A63);
  border-radius: 6px 6px 0 0;
  margin-bottom: 2px;
}
.box-front {
  height: 120px;
  background: linear-gradient(135deg, #F2C4A0, #E8A87C);
  border-radius: 0 0 10px 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.box-logo { display: flex; flex-direction: column; align-items: center; }
.box-brand { font-family: 'Fredoka', sans-serif; font-size: .75rem; font-weight: 700; color: var(--navy); }
.box-sub-txt { font-size: .55rem; color: var(--navy); opacity: .7; }
.box-hearts { font-size: .7rem; color: var(--coral-dark); margin-top: 4px; letter-spacing: 4px; }

/* Play illustration */
.play-illustration {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--beige); border-radius: var(--radius-md); padding: 20px;
  width: 160px;
}
.play-toys { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pt {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; animation: float 3s ease-in-out infinite;
}
.pt1 { background: #D4EAD4; color: var(--green-dark); }
.pt2 { background: #F2D9A0; color: #B8860B; animation-delay: .4s; }
.pt3 { background: #DDD6E8; color: var(--lavender-dark); animation-delay: .8s; }
.pt4 { background: #F2C4B8; color: var(--coral-dark); animation-delay: 1.2s; }
.play-label { font-size: .7rem; font-weight: 600; color: var(--navy); text-align: center; }

.step-title { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-body  { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   O QUE VEM NA CAIXA
   ============================================================ */
.caixa {
  padding: 80px 0;
  background: var(--cream);
}

.caixa__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.caixa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.caixa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.caixa-num {
  position: absolute;
  top: 14px; left: 16px;
  width: 24px; height: 24px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: var(--text-light);
}

.caixa-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.caixa-green   { background: #D4EAD4; color: var(--green-dark); }
.caixa-peach   { background: #F2D4CC; color: var(--coral-dark); }
.caixa-coral   { background: #F5C8BC; color: var(--coral); }
.caixa-yellow  { background: #F5EAC0; color: #A07D00; }
.caixa-lavender{ background: #DDD6E8; color: var(--lavender-dark); }

.caixa-card h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.caixa-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   O QUE ISSO ESTIMULA
   ============================================================ */
.estimula {
  padding: 80px 0;
  background: var(--beige);
}

.estimula__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.skill-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.skill-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.skill-green   { background: #D4EAD4; color: var(--green-dark); }
.skill-peach   { background: #F2D4CC; color: var(--coral-dark); }
.skill-yellow  { background: #F5EAC0; color: #A07D00; }
.skill-coral   { background: #F5C8BC; color: var(--coral); }
.skill-lavender{ background: #DDD6E8; color: var(--lavender-dark); }
.skill-pink    { background: #F9D0DC; color: #C44D70; }
.skill-blue    { background: #D0E4F0; color: #3A7FAA; }
.skill-heart   { background: #FFD6DE; color: #C44D70; }
.skill-item span { font-size: .75rem; color: var(--navy); font-weight: 500; line-height: 1.3; }

.estimula__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  color: var(--text);
  line-height: 1.55;
}

/* Estimula image side */
.estimula__image { display: flex; justify-content: center; }
.estimula-photo-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}
.estimula-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   NOSSOS PLANOS
   ============================================================ */
.planos {
  padding: 80px 0;
  background: var(--cream);
}
.deco-leaf { font-style: normal; }

.planos__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr auto;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plano-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.plano-card--featured {
  border: 2px solid var(--coral);
  box-shadow: 0 8px 32px rgba(217,122,99,.2);
}

.plano-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

.plano-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.plano-icon--green   { background: #D4EAD4; color: var(--green-dark); }
.plano-icon--coral   { background: #F5C8BC; color: var(--coral); }
.plano-icon--lavender{ background: #DDD6E8; color: var(--lavender-dark); }

.plano-name { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); text-align: center; }
.plano-tagline { font-size: .82rem; color: var(--text-light); text-align: center; margin-bottom: 16px; }

.plano-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 2px; margin-bottom: 20px;
}
.plano-price .currency { font-size: .95rem; font-weight: 600; color: var(--navy); }
.plano-price .amount   { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.plano-price .period   { font-size: .88rem; color: var(--text-light); }

.plano-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.plano-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .87rem; color: var(--text); line-height: 1.5;
}
.plano-features li i { color: var(--green-dark); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }

.plano-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: filter .2s, transform .15s;
}
.plano-btn:hover { filter: brightness(.9); transform: translateY(-2px); }
.plano-btn--green   { background: rgba(138,175,138,.15); color: var(--green-dark); border: 1.5px solid var(--green); }
.plano-btn--coral   { background: var(--coral); color: var(--white); box-shadow: 0 4px 16px rgba(217,122,99,.3); }
.plano-btn--lavender{ background: rgba(184,169,201,.15); color: var(--lavender-dark); border: 1.5px solid var(--lavender); }

/* Club card */
.plano-club {
  width: 220px;
}
.plano-club__inner {
  background: linear-gradient(160deg, #FDF7F0 0%, #EDE5D8 100%);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.plano-club__icon {
  font-size: 1.5rem; color: var(--coral); display: block; margin-bottom: 14px;
}
.plano-club__inner h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem; color: var(--navy); line-height: 1.4; margin-bottom: 12px;
}
.plano-club__inner p {
  font-size: .82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px;
}
.plano-club__visual { display: flex; gap: 12px; justify-content: center; }
.guide-book, .club-bag {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: .65rem; color: var(--text-light);
}
.guide-book i { font-size: 1.4rem; color: var(--coral); }
.club-bag  i { font-size: 1.4rem; color: var(--green-dark); }

/* ============================================================
   HISTÓRIA
   ============================================================ */
.historia {
  padding: 80px 0;
  background: var(--beige);
}

.historia__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.historia__text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.historia__quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(217,122,99,.08);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-top: 20px;
}
.historia__quote p { font-size: .92rem; color: var(--text); line-height: 1.6; font-style: italic; }

/* Historia image */
.historia__image { display: flex; justify-content: center; }
.historia-photo-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.historia-photo {
  width: 100%;
  height: auto;
  display: block;
}
.historia-speech-bubble {
  background: rgba(255,255,255,.5);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  font-size: .74rem;
  color: var(--navy);
  line-height: 1.45;
  position: absolute;
  top: 16px;
  right: 10px;
  max-width: 150px;
  border: 1px solid rgba(217,122,99,.14);
}
.historia-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 10px solid transparent;
  border-top-color: rgba(255,255,255,.5);
  border-bottom: none;
}
/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  padding: 80px 0;
  background: var(--cream);
}

.depoimentos__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.depoimentos__header { padding-top: 8px; }
.depoimentos__header p { font-size: .9rem; color: var(--text-light); margin-top: 12px; line-height: 1.6; }

.depoimentos__carousel-wrap { overflow: hidden; }
.depoimentos__carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transition: transform .4s ease;
}

.depo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.depo-quote-icon {
  width: 36px; height: 36px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .9rem;
}

.depo-text { font-size: .88rem; color: var(--text); line-height: 1.65; flex: 1; }

.depo-author {
  display: flex; align-items: center; gap: 10px;
}
.depo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: .88rem; color: var(--navy); }
.depo-author span   { display: block; font-size: .75rem; color: var(--text-light); }

.depo-stars { color: #F5A623; font-size: .9rem; letter-spacing: 2px; }

.carousel-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: 1.5px solid rgba(44,58,74,.15);
}
.dot.active { background: var(--coral); transform: scale(1.3); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 80px 0;
  background: var(--beige);
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.cta-feat-item {
  display: flex; align-items: center; gap: 14px;
}
.cta-feat-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--coral);
  box-shadow: var(--shadow-sm);
}
.cta-feat-item span { font-size: .92rem; color: var(--navy); font-weight: 500; }

/* CTA box */
.cta-final__right {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cta-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  width: 100%;
  border: 2px solid rgba(217,122,99,.15);
}
.cta-box__deco {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; color: var(--coral);
  background: var(--white);
  padding: 0 10px;
}
.cta-box__text {
  font-size: 1rem; color: var(--navy); line-height: 1.6; margin-bottom: 20px; font-weight: 500;
}
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral);
  color: white;
  font-size: 1.05rem; font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(217,122,99,.4);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-cta-big:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(217,122,99,.5); }
.cta-box__note { font-size: .78rem; color: var(--text-light); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* CTA visual box */
.cta-box-visual { position: relative; }
.cta-iestimule-box {
  width: 140px; height: 160px;
  background: linear-gradient(135deg, #F2C4A0, #E8A87C);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.cib-front { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cib-name  { font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.cib-front small { font-size: .6rem; color: var(--navy); opacity: .7; }
.cib-hearts { font-size: .8rem; color: var(--coral-dark); letter-spacing: 4px; }
.cib-sparks {
  position: absolute;
  top: -10px; right: -10px;
  font-size: 1.4rem; color: var(--coral);
  animation: float 2.5s ease-in-out infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; opacity: .75; max-width: 280px; }

.footer__logo {
  display: flex; align-items: center; gap: 10px;
}
.footer__brand-name { display: block; font-family: 'Fredoka', sans-serif; font-size: 1.15rem; font-weight: 700; color: white; }
.footer__brand-sub  { display: block; font-size: .6rem; color: rgba(255,255,255,.5); letter-spacing: .04em; }

.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4, .footer__contact h4 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__links a:hover { color: var(--coral); }
.footer__contact p { font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.footer__contact p i { color: var(--coral); }

.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--coral); color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .planos__grid { grid-template-columns: 1fr 1fr; }
  .plano-club { width: 100%; }
  .caixa__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image-wrap {
    display: block;
    max-width: 520px;
    margin: 0 auto;
  }
  .estimula__inner { grid-template-columns: 1fr; }
  .historia__inner { grid-template-columns: 1fr; }
  .depoimentos__inner { grid-template-columns: 1fr; }
  .depoimentos__carousel { grid-template-columns: repeat(2, 1fr); }
  .cta-final__inner { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step-card { width: 100%; max-width: 400px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .navbar__nav { display: none; }
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(247,241,234,.98);
    padding: 32px 24px; gap: 24px; z-index: 99;
    font-size: 1.1rem;
  }
  .navbar__nav.open + .navbar__actions { display: flex; position: fixed; bottom: 40px; left: 24px; right: 24px; flex-direction: column; z-index: 99; gap: 12px; }
  .hero__features { flex-direction: column; }
  .feature-divider { width: 100%; height: 1px; }
  .feature-card { padding: 12px 0; }
  .caixa__grid { grid-template-columns: repeat(2, 1fr); }
  .planos__grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(4, 1fr); }
  .depoimentos__carousel { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .caixa__grid { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: repeat(4, 1fr); }
  .depoimentos__carousel { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
