/* ═══════════════════════════════════════════════
   ANA BOBROW BABY PLANNER — styles.css
   ═══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --lilac:        #9B6EC8;
  --lilac-mid:    #C4A0E8;
  --lilac-light:  #F8F0FF;
  --lilac-dark:   #7A4FA8;
  --turq:         #4DD9D9;
  --turq-light:   #E0F9F9;
  --turq-dark:    #2BBABA;
  --verde:        #7ED957;
  --verde-light:  #EDFADE;
  --verde-dark:   #5BB83A;
  --amarelo:      #FFD166;
  --amarelo-light:#FFF5D6;
  --white:        #FFFFFF;
  --dark:         #2C1B4E;
  --text:         #4A3F6B;
  --text-muted:   #8878A8;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --shadow-sm:    0 2px 8px rgba(155,110,200,.12);
  --shadow-md:    0 8px 24px rgba(155,110,200,.18);
  --shadow-lg:    0 16px 48px rgba(155,110,200,.22);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-title:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--lilac);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(155,110,200,.35);
}
.btn-primary:hover {
  background: var(--lilac-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,110,200,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--lilac);
  border: 2px solid var(--lilac);
}
.btn-ghost:hover {
  background: var(--lilac-light);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  font-weight: 600;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* Two-line CTA button */
.btn-two-lines {
  flex-direction: column;
  gap: 2px;
  padding: 14px 36px;
  line-height: 1.1;
}
.btn-line-top {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .9;
}
.btn-line-bottom {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .06em;
}

/* pulse animation for hero CTA */
.pulse-btn {
  animation: pulseShadow 2.5s infinite;
}
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 4px 16px rgba(155,110,200,.35); }
  50%       { box-shadow: 0 4px 32px rgba(155,110,200,.6), 0 0 0 6px rgba(155,110,200,.15); }
}

/* ─── Section helpers ─── */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--lilac-light);
  color: var(--lilac);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.badge-light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title em {
  font-style: italic;
  color: var(--lilac);
}
.title-white { color: var(--white); }
.em-light { color: var(--amarelo) !important; }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
}
.sub-white { color: rgba(255,255,255,.8); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-color: rgba(155,110,200,.15);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.logo-text {
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lilac);
}
.logo-sub {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--lilac);
  background: var(--lilac-light);
}
.nav-cta {
  padding: 10px 22px;
  font-size: .88rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--lilac-light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(to right,
      rgba(248,240,255,0.97) 0%,
      rgba(248,240,255,0.88) 45%,
      rgba(248,240,255,0.25) 70%,
      rgba(248,240,255,0.0) 100%),
    url('capafundo1.png') center right / cover no-repeat;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero: single column when visual is hidden */
.hero-container {
  grid-template-columns: 55% 1fr;
}

/* Hero text */
.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--lilac);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--lilac);
  position: relative;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-subtitle strong { color: var(--lilac); font-weight: 700; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lilac);
  line-height: 1;
}
.stat-l {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--lilac-mid);
  opacity: .4;
}

/* Hero visual — hidden when real bg photo is used */
.hero-visual { display: none; }
.hero-arch-wrap { position: relative; width: 340px; }
.hero-arch {
  width: 280px;
  height: 360px;
  border-radius: 140px 140px 20px 20px;
  background: linear-gradient(160deg, var(--lilac) 0%, var(--lilac-mid) 60%, #D4AAFF 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(255,255,255,.2) 0%, transparent 60%);
}
.arch-deco-top {
  position: absolute;
  top: 28px;
  font-size: 1.2rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 8px;
}
.arch-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.arch-icon { font-size: 4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)); }
.arch-tag {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.arch-hearts { font-size: 1.1rem; color: rgba(255,255,255,.7); letter-spacing: 6px; }

/* Floating pills */
.hero-pill {
  position: absolute;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: floatPill 4s ease-in-out infinite;
}
.pill-turq  { background: var(--turq);   color: var(--dark);  top: 30px;  right: 0;   animation-delay: 0s; }
.pill-verde { background: var(--verde);  color: var(--dark);  top: 180px; left: -20px; animation-delay: 1.3s; }
.pill-amarelo { background: var(--amarelo); color: var(--dark); bottom: 60px; right: -10px; animation-delay: 2.2s; }
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Floating decoratives */
.float-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-size: 1.4rem;
  opacity: .35;
  animation: floatRnd 6s ease-in-out infinite;
}
.heart { color: var(--lilac); }
.star  { color: var(--amarelo); }
.squiggle { color: var(--turq); font-size: 2rem; }
.f1 { top: 15%; left: 5%;  animation-delay: 0s; }
.f2 { top: 25%; right: 8%; animation-delay: 1s; }
.f3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.f4 { top: 60%; right: 3%; animation-delay: .5s; }
.f5 { top: 8%;  left: 40%; animation-delay: 1.8s; }
.f6 { bottom: 20%; right: 15%; animation-delay: 3s; }
.f7 { bottom: 10%; left: 30%; animation-delay: .8s; }
@keyframes floatRnd {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-12px) rotate(8deg); }
  66%  { transform: translateY(6px) rotate(-5deg); }
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════ */
.problema {
  padding: 90px 0;
  background: #FFF8F9;
}
.problema .section-badge.prob-badge {
  background: #FFE8EE;
  color: #C06080;
  border-color: transparent;
}
.prob-title em { color: #C06080; font-style: italic; }

/* 3×2 card grid */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.prob-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(192,96,128,.10);
  display: flex;
  flex-direction: column;
  height: 420px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.prob-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(192,96,128,.20); }

/* Image: 60% of card height, crop from top to keep faces visible */
.prob-photo {
  flex: 3;
  background-size: cover;
  background-position: center top;
  background-color: #F5D4DC;
  min-height: 0;
}

/* Text area: 40% of card height */
.prob-body {
  flex: 2;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 0;
}
.prob-title-card {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.prob-quote {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid #F0A0B8;
  margin: 0;
}

/* Bottom solution bar */
.prob-solucao {
  margin-top: 44px;
  background: #FFE8EE;
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.prob-sol-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #C06080;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(192,96,128,.30);
}
.prob-sol-title {
  font-size: .97rem;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 6px;
}
.prob-sol-title em { color: #C06080; font-style: italic; }
.prob-sol-sub {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════ */
.sobre {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sobre-deco-1, .sobre-deco-2 {
  position: absolute;
  font-size: 5rem;
  opacity: .06;
  pointer-events: none;
}
.sobre-deco-1 { top: 10%; left: 2%; color: var(--lilac); }
.sobre-deco-2 { bottom: 10%; right: 3%; color: var(--amarelo); }
.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Arch frame */
.arch-frame-wrap { position: relative; display: flex; justify-content: center; }
.arch-frame {
  width: 455px;
  height: 595px;
  border-radius: 228px 228px 20px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.lilac-arch { background: linear-gradient(180deg, var(--lilac-light) 0%, var(--lilac-mid) 100%); }
.arch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.arch-placeholder-inner {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(180deg, var(--lilac-light) 0%, var(--lilac-mid) 100%);
}
.arch-frame-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 20px;
  background: var(--lilac);
  border-radius: 50%;
  filter: blur(16px);
  opacity: .25;
}

/* Float badge */
.sobre-badge-float {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: .82rem;
}
.sobre-badge-float .badge-icon { font-size: 1.4rem; }
.sobre-badge-float strong { display: block; color: var(--dark); font-weight: 700; font-size: .88rem; }
.sobre-badge-float span { color: var(--text-muted); }

/* Sobre content */
.sobre-text { margin-bottom: 14px; line-height: 1.75; color: var(--text); }
.sobre-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.bullet-no, .bullet-yes {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.icon-no  { background: #FFE8E8; color: #E05050; }
.icon-yes { background: var(--verde-light); color: var(--verde-dark); }

/* ══════════════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════════════ */
.como-funciona {
  padding: 100px 0;
  background: var(--lilac-light);
  position: relative;
  overflow: hidden;
}
.cf-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 40%, rgba(77,217,217,.10) 0%, transparent 40%),
    radial-gradient(circle at 92% 20%, rgba(196,94,138,.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 95%, rgba(255,209,102,.08) 0%, transparent 40%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ─ Card base ─ */
.step-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  color: #fff;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.24); }

/* Card color variants (matching inspiration) */
.step-c-01 { background: linear-gradient(145deg, #A880CB 0%, #9168B5 100%); }
.step-c-02 { background: linear-gradient(145deg, #D97680 0%, #C56068 100%); }
.step-c-03 { background: linear-gradient(145deg, #CBA84E 0%, #B89438 100%); }
.step-c-04 { background: linear-gradient(145deg, #7C42A4 0%, #6A2E90 100%); }

/* ─ Header row: number (left) + icon (right) ─ */
.step-hrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.step-nlg {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,.25);
}

/* ─ Icon circle ─ */
.step-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
}

/* ─ Icon images ─ */
.step-ico-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ─ Butterfly decoration ─ */
.step-heart-ico {
  display: block;
  margin-bottom: 10px;
}
.step-butterfly-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  opacity: .85;
}

/* ─ Card title ─ */
.step-card .step-title {
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0,0,0,.22);
}
.step-card .step-title em {
  font-style: italic;
  color: rgba(255,255,255,.92);
}

/* ─ Description ─ */
.step-card .step-desc {
  font-size: .865rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

/* ─ Bullet list (step 02) ─ */
.step-blist {
  list-style: none;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.step-blist li {
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.step-blist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: .75rem;
  top: 1px;
}

/* ─ Chips ─ */
.step-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.step-chips span {
  border-radius: 50px;
  padding: 4px 13px;
  font-size: .73rem;
  font-weight: 600;
  background: rgba(255,255,255,.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
}

/* ─ Closing tagline ─ */
.cf-tagline {
  text-align: center;
  margin: 48px auto 0;
  padding: 26px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 680px;
}
.cf-tagline p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}
.cf-tagline strong {
  color: var(--lilac-dark);
  font-style: normal;
}

/* ══════════════════════════════════════════════
   BENEFÍCIOS — vitrine boutique
══════════════════════════════════════════════ */
.beneficios {
  padding: 100px 0;
  background: var(--white);
}
.benef-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benef-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benef-arch-wrap {
  position: relative;
  margin-bottom: 38px;
}
.benef-arch {
  width: 200px;
  height: 278px;
  border-radius: 100px 100px 20px 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(155,110,200,.20);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benef-arch:hover { transform: translateY(-8px); box-shadow: 0 22px 52px rgba(155,110,200,.28); }
.benef-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─ Icon badge ─ */
.benef-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.16);
  z-index: 2;
}
.ba-lilac      { background: var(--lilac); }
.ba-rosa       { background: #D9737A; }
.ba-verde      { background: var(--verde-dark); }
.ba-lilac-dark { background: var(--lilac-dark); }

/* ─ Title ─ */
.benef-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.bt-lilac      { color: var(--lilac); }
.bt-rosa       { color: #C9636E; }
.bt-verde      { color: var(--verde-dark); }
.bt-lilac-dark { color: var(--lilac-dark); }

/* ─ Description ─ */
.benef-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.68;
  max-width: 210px;
}

/* ══════════════════════════════════════════════
   SERVIÇOS — bento grid
══════════════════════════════════════════════ */
.servicos {
  padding: 100px 0;
  background: var(--lilac-light);
}

/* Generic carousel — shared with Depoimentos */
.carousel-outer { position: relative; }
.carousel-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

/* ─ Grid ─ */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "c1 c2"
    "c3 c4";
  gap: 24px;
  margin-top: 16px;
}
.sv-c1 { grid-area: c1; }
.sv-c2-wrap { grid-area: c2; position: relative; padding-top: 22px; }
.sv-c2 { height: 100%; }
.sv-c3 { grid-area: c3; }
.sv-c4 { grid-area: c4; }

/* ─ Card base ─ */
.sv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: row;
}
.sv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(120,80,180,.18); }

/* Featured highlight */
.sv-featured { border: 2px solid var(--lilac); }

/* "MAIS ESCOLHIDO" pill — acima do wrapper, fora do card com overflow:hidden */
.sv-feat-pill {
  position: absolute;
  top: 0;
  right: 28px;
  background: #F5C842;
  color: #4D3200;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(245,200,66,.4);
  z-index: 5;
}

/* ─ Unified photo column (all cards) ─ */
.sv-photo {
  width: 38%;
  flex-shrink: 0;
  align-self: stretch;
  background-size: cover;
  background-position: center top;
  min-height: 240px;
}

/* ─ Unified body column (all cards) ─ */
.sv-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* ─ Icon PNG images ─ */
.sv-ico-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ─ Tag row ─ */
.sv-tag-row { display: flex; align-items: center; gap: 10px; }

/* ─ Icon circle ─ */
.sv-ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sv-ico-lilac { background: rgba(155,110,200,.12); }
.sv-ico-turq  { background: rgba(100,200,210,.15); }
.sv-ico-pink  { background: #FDEAF4; }
.sv-ico-gold  { background: #FFF5D6; }

/* ─ Badge ─ */
.sv-tag {
  border-radius: 50px; padding: 3px 12px;
  font-size: .67rem; font-weight: 800; letter-spacing: .09em;
}
.sv-tag-green { background: #E0F8EE; color: #1A9058; }
.sv-tag-turq  { background: rgba(10,138,150,.1);  color: #0A8A96; }
.sv-tag-lilac { background: rgba(155,110,200,.12); color: var(--lilac-dark); }
.sv-tag-pink  { background: #FDEAF4; color: #B03A78; }
.sv-tag-gold  { background: #FFF5D6; color: #8A6700; }

/* ─ Title, desc ─ */
.sv-title { font-family: var(--font-title); font-size: 1.08rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.sv-desc  { font-size: .855rem; color: var(--text-muted); line-height: 1.68; flex: 1; }

/* ─ Price block ─ */
.sv-from  { font-size: .73rem; color: var(--text-muted); margin-bottom: -6px; }
.sv-price { font-family: var(--font-title); font-size: 1.35rem; font-weight: 800; line-height: 1; }
.sv-pr-green { color: #1A9058; }
.sv-pr-turq  { color: #0A8A96; }
.sv-pr-lilac { color: var(--lilac-dark); }
.sv-pr-pink  { color: #B03A78; }
.sv-pr-gold  { color: #8A6700; }

/* ─ Sub notes ─ */
.sv-subnote { font-size: .75rem; color: var(--text-muted); margin-top: -4px; }
.sv-formats { font-size: .78rem; color: var(--text-muted); margin-top: -2px; }

/* ─ CTA buttons ─ */
.sv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; text-decoration: none;
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}
.sv-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.sv-btn-block  { display: flex; }
.sv-btn-green  { background: #1A9058;           color: #fff; }
.sv-btn-purple { background: var(--lilac);      color: #fff; }
.sv-btn-turq   { background: #0A8A96;           color: #fff; }
.sv-btn-dark   { background: var(--lilac-dark); color: #fff; }
.sv-btn-pink   { background: #C9636E;           color: #fff; }
.sv-btn-gold   { background: #C9943A;           color: #fff; }

/* ─ Bottom pillars strip ─ */
.sv-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 1px solid rgba(155,110,200,.14);
  border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
}
.sv-pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(155,110,200,.1);
}
.sv-pillar:last-child { border-right: none; }
.sv-pillar-ico   { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.sv-pillar-title { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.sv-pillar-txt   { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* Carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.c-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--lilac);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  line-height: 1;
}
.c-btn:hover { background: var(--lilac); color: var(--white); transform: scale(1.1); }
.c-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.c-dots { display: flex; gap: 8px; align-items: center; }
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lilac-mid);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.c-dot.active { width: 24px; border-radius: 4px; background: var(--lilac); }

/* ══════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════ */
.depoimentos {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.depo-deco-1, .depo-deco-2, .depo-deco-3 {
  position: absolute;
  font-size: 6rem;
  opacity: .05;
  pointer-events: none;
}
.depo-deco-1 { top: 5%;  left: 2%;  color: var(--lilac); }
.depo-deco-2 { top: 40%; right: 3%; color: var(--amarelo); }
.depo-deco-3 { bottom: 5%; left: 40%; color: var(--turq); }

/* Depo cards */
.depo-card {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
  background: var(--lilac-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  border: 1px solid rgba(155,110,200,.12);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.depo-quote {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--lilac);
  opacity: .3;
  line-height: .8;
  font-weight: 800;
}
.depo-stars { color: var(--amarelo); font-size: 1rem; letter-spacing: 3px; }
.depo-text {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  font-style: italic;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(155,110,200,.15);
  margin-bottom: 4px;
}
.depo-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--lilac-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--lilac-mid);
}
.depo-avatar-img {
  background: var(--lilac-light);
  padding: 0;
}
.depo-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
}
.depo-meta { display: flex; flex-direction: column; }
.depo-meta strong { color: var(--dark); font-size: .9rem; }
.depo-meta span { color: var(--text-muted); font-size: .8rem; }

/* ══════════════════════════════════════════════
   ANA BOBROW CTA
══════════════════════════════════════════════ */
.ana-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-dark) 100%);
  position: relative;
  overflow: hidden;
}
.ana-bg-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: rgba(255,255,255,.05);
  white-space: nowrap;
  letter-spacing: 30px;
  pointer-events: none;
  user-select: none;
}
.ana-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo circle */
.ana-photo-col { display: flex; justify-content: center; }
.ana-circle-wrap { position: relative; width: 240px; height: 240px; }
.ana-circle-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.4);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ana-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 4px solid rgba(255,255,255,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ana-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ana-img-placeholder {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Ana content */
.ana-cta .section-badge { background: rgba(255,255,255,.2); color: var(--white); }
.ana-cta .section-title { color: var(--white); }
.ana-cta .section-title em { color: var(--amarelo); }
.ana-bio {
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 520px;
}
.ana-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ana-chips span {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
}
.ana-cta .btn-primary {
  background: var(--white);
  color: var(--lilac);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.ana-cta .btn-primary:hover { background: var(--lilac-light); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: linear-gradient(145deg, #2EBE72 0%, #1E9E5A 100%);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '♡ ✦ ★ ♡ ✦ ★';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  font-size: 5rem;
  color: rgba(255,255,255,.04);
  letter-spacing: 40px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}
.faq .section-header { margin-bottom: 48px; }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item:hover { background: rgba(255,255,255,.17); }
.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover { color: var(--amarelo); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--amarelo);
  color: var(--dark);
}
.faq-a {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a.open {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-a p {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */
.blog {
  padding: 100px 0;
  background: var(--lilac-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-thumb-1 { background: linear-gradient(135deg, var(--lilac-light), var(--lilac-mid)); }
.blog-thumb-2 { background: linear-gradient(135deg, var(--turq-light), var(--turq)); }
.blog-thumb-emoji { font-size: 4rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.1)); }
.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--lilac);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.blog-body { padding: 28px 28px 32px; }
.blog-date { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; display: block; }
.blog-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.blog-link {
  color: var(--lilac);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.blog-link:hover { color: var(--lilac-dark); gap: 8px; }
.blog-link span { transition: transform var(--transition); }
.blog-link:hover span { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   DEPOIMENTO DESTAQUE (Juliana — logo após hero)
══════════════════════════════════════════════ */
.depo-destaque {
  background: var(--lilac-light);
  padding: 48px 0;
  border-bottom: 1px solid rgba(155,110,200,.12);
}
.depo-destaque-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}
.depo-destaque-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--lilac-mid);
}
.depo-destaque-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depo-destaque-stars { color: #F5C842; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.depo-destaque-text {
  font-size: 1.08rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.depo-destaque-text strong { color: var(--lilac-dark); font-style: normal; }
.depo-destaque-author {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   AVALIAÇÃO GRATUITA (seção isolada)
══════════════════════════════════════════════ */
.avaliacao-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F0FFF4 0%, #E8F5E9 100%);
}
.avaliacao-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #A8D5B5;
}
.avaliacao-badge {
  display: inline-block;
  background: #D4EDDA;
  color: #2E7D47;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.avaliacao-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.avaliacao-title em { color: #2E7D47; font-style: italic; }
.avaliacao-desc {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
}
.avaliacao-micro {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--text-muted);
}
.avaliacao-img-wrap { display: flex; justify-content: center; }
.avaliacao-img {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════
   FECHAMENTO
══════════════════════════════════════════════ */
.fechamento {
  padding: 100px 0;
  background: linear-gradient(135deg, #4B2278 0%, var(--lilac-dark) 45%, #6B3898 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fechamento::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -15%;
  width: 55%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%);
  pointer-events: none;
}
.fechamento::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -15%;
  width: 55%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,193,66,.12) 0%, transparent 65%);
  pointer-events: none;
}
.fechamento-confetti {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .95rem;
  color: rgba(255,255,255,.18);
  letter-spacing: 18px;
  white-space: nowrap;
}
.fechamento-inner {
  position: relative;
  z-index: 1;
}
.fechamento-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin: 18px 0 22px;
  line-height: 1.15;
}
.fechamento-title em {
  color: #F5C842;
  font-style: italic;
}
.fechamento-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.fechamento-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-white {
  background: #fff;
  color: var(--lilac-dark);
}
.btn-white:hover { filter: brightness(.95); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.fechamento-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ft-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ft-item strong {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  color: #F5C842;
  line-height: 1;
}
.ft-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.ft-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}
.lb-overlay.active { display: flex; }
.lb-img {
  width: 90vw;
  height: 88vh;
  max-width: 1100px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  pointer-events: none;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0,0,0,.4);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-lb] { cursor: zoom-in; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--lilac);
  color: rgba(255,255,255,.85);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 8px; }
.footer-brand-name {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-desc { font-size: .85rem; line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.soc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.soc-icon:hover { background: var(--white); color: var(--lilac); transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .85rem;
}
.footer-links a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4AE06A;
  font-weight: 500;
  transition: opacity var(--transition);
}
.footer-wa-link:hover { opacity: .8; }
.footer-wa-link svg { flex-shrink: 0; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .prob-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: span 2; }
  .sv-grid { gap: 16px; }
}

@media (max-width: 900px) {
  .sobre-container { grid-template-columns: 1fr; gap: 56px; }
  .sobre-img-col { display: flex; justify-content: center; }
  .sobre-content { text-align: center; }
  .sobre-bullets { align-items: center; }
  .bullet-no, .bullet-yes { justify-content: center; }
  .sobre-content .btn { margin: 0 auto; display: inline-flex; }

  .ana-container { grid-template-columns: 1fr; text-align: center; }
  .ana-photo-col { justify-content: center; }
  .ana-bio { margin: 0 auto 24px; text-align: center; }
  .ana-chips { justify-content: center; }
  .ana-cta .btn { margin: 0 auto; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benef-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* Serviços: 2-col tablet (mesmo do desktop, ok) */
  .sv-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "c1 c2"
      "c3 c4";
  }
  .sv-c2-wrap { padding-top: 20px; }
  .sv-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(155,110,200,.08);
    font-size: 1rem;
  }
  .nav-cta { margin-top: 16px; text-align: center; }
  .hamburger { display: flex; }

  /* Hero — overlay totalmente opaco no mobile para garantir contraste */
  .hero {
    padding: 120px 0 80px;
    background:
      linear-gradient(to bottom,
        rgba(248,240,255,0.98) 0%,
        rgba(248,240,255,0.97) 70%,
        rgba(248,240,255,0.93) 100%),
      url('capafundo1.png') center top / cover no-repeat;
  }
  /* Logo menor no mobile */
  .logo-img { height: 44px; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-arch { width: 220px; height: 280px; border-radius: 110px 110px 16px 16px; }
  .hero-arch-wrap { width: 260px; }

  /* Carousel: 1 card on mobile */
  .depo-card  { flex: 0 0 calc(100% - 20px); }

  /* Serviços: 1-col mobile, foto em cima / texto embaixo */
  .sv-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "c1" "c2" "c3" "c4";
  }
  .sv-c2-wrap { padding-top: 18px; }
  .sv-card { flex-direction: column; }
  .sv-photo { width: 100%; height: 200px; min-height: unset; background-position: center center; }
  .sv-body { padding: 14px 12px; gap: 7px; }
  .sv-title { font-size: .95rem; }
  .sv-desc  { font-size: .8rem; }
  .sv-price { font-size: 1.1rem; }
  .sv-btn   { font-size: .76rem; padding: 9px 14px; }
  .sv-pillars { grid-template-columns: 1fr 1fr; }

  /* Sections */
  .benef-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .benef-arch { width: 150px; height: 210px; border-radius: 75px 75px 16px 16px; }
  .benef-desc { max-width: none; font-size: .82rem; }
  .benef-desc { max-width: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }

  /* Fechamento mobile */
  .fechamento { padding: 70px 0; }
  .fechamento-confetti { display: none; }
  .ft-sep { display: none; }
  .fechamento-trust { gap: 24px 36px; }

  /* Depoimento destaque mobile */
  .depo-destaque-card { flex-direction: column; text-align: center; padding: 28px 24px; gap: 20px; }

  /* Avaliação gratuita mobile */
  .avaliacao-card { grid-template-columns: 1fr; padding: 28px 18px; gap: 20px; max-width: 100%; box-sizing: border-box; }
  .avaliacao-right { display: none; }
  .avaliacao-title { font-size: 1.5rem; }
  .avaliacao-section .btn { width: 100%; box-sizing: border-box; text-align: center; justify-content: center; white-space: normal; }

  /* Problema mobile — 1 coluna, card horizontal (foto à esq, texto à dir) */
  .prob-grid { grid-template-columns: 1fr; gap: 12px; }
  .prob-card { height: 130px; flex-direction: row; }
  .prob-photo { width: 120px; flex: none; min-height: unset; background-position: center top; }
  .prob-body { padding: 12px 14px; }
  .prob-quote { font-size: .75rem; line-height: 1.45; }
  .prob-solucao { flex-direction: column; text-align: center; padding: 28px 24px; }

  /* Sobre — fix overflow */
  .sobre-container { grid-template-columns: minmax(0, 1fr); }
  .sobre-img-col { flex-direction: column; align-items: center; }
  .arch-frame { width: min(300px, 85vw); height: auto; aspect-ratio: 455/595; border-radius: 50% 50% 20px 20px; margin: 0 auto; }
  .arch-frame-shadow { display: none; }

  /* Como Funciona — single column */
  .steps-grid { grid-template-columns: 1fr; }

  /* Ana CTA — fix overflow */
  .ana-bg-deco { display: none; }
  .ana-container { grid-template-columns: minmax(0, 1fr); }
  .ana-cta .btn { width: 100%; justify-content: center; box-sizing: border-box; white-space: normal; text-align: center; }

  .section-title { font-size: 1.7rem; }
  .sobre-badge-float { position: relative; right: auto; bottom: auto; margin: 20px auto 0; width: fit-content; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns .btn { width: 100%; }
  .stat-sep { display: none; }
  .hero-stats { gap: 16px; justify-content: space-around; width: 100%; }
  .step-card-white { padding: 22px 18px 20px; }
  .faq-q { font-size: .88rem; padding: 18px 18px; }
  .faq-a.open { padding: 0 18px 18px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
