/* ============================================================
   BalloonKids — Landing Page
   Aquarela · tons pastéis · céu de balões
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Nunito+Sans:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* warm paper neutrals */
  --cream-0:   #FDF8EC;   /* lightest paper */
  --cream-1:   #FBF2DA;   /* page base */
  --cream-2:   #F8EAC6;   /* logo-ish butter */
  --cream-3:   #F2E0B4;   /* deeper band */

  /* pastel rainbow (watercolor) */
  --coral:     #F4B7A3;
  --coral-ink: #E0602E;   /* saturated coral = CTA / brand accent */
  --peach:     #F8CFA1;
  --butter:    #F2E2A2;
  --sage:      #C2DCB2;
  --sky:       #B4D2E2;
  --lilac:     #CBC1E0;

  /* soft tints for backgrounds */
  --coral-wash: #FBE6DC;
  --sage-wash:  #E6F0DF;
  --sky-wash:   #E1EDF3;
  --butter-wash:#FAF1CF;

  /* ink */
  --ink:       #4A3826;   /* deep warm brown */
  --ink-soft:  #6E5A45;
  --ink-faint: #9C886F;

  /* accents */
  --teal:      #4FA59B;   /* from logo ring */
  --teal-deep: #3C8A82;

  /* structure */
  --maxw: 1180px;
  --radius-s: 14px;
  --radius:   22px;
  --radius-l: 34px;
  --shadow-sm: 0 4px 16px rgba(120, 90, 50, 0.08);
  --shadow:    0 14px 40px rgba(120, 90, 50, 0.13);
  --shadow-lg: 0 30px 70px rgba(120, 90, 50, 0.18);

  --serif: 'Bitter', Georgia, serif;
  --sans: 'Nunito Sans', system-ui, sans-serif;
  --hand: 'Caveat', cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-1);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--teal-deep);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
}
.lead { font-size: 1.22rem; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 130px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(253, 248, 236, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(120,90,50,.09);
  padding: 9px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; transition: width .35s, height .35s; }
.scrolled .brand img { width: 44px; height: 44px; }
.brand .brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.32rem; color: var(--coral-ink); line-height: 1; letter-spacing: -.01em; }
.brand .brand-name small { display: block; font-family: var(--sans); font-weight: 600; font-size: .6rem; letter-spacing: .22em; color: var(--ink-faint); text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: .98rem; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--coral-ink); }
.nav-cta { display: inline-flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 1.02rem;
  padding: 16px 30px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap; text-align: center; line-height: 1.1;
}
.btn svg { flex: none; }
.btn-primary { background: var(--coral-ink); color: #fff; box-shadow: 0 10px 24px rgba(224,96,46,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(224,96,46,.42); background: #d9551f; }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--ink); border: 1.5px solid rgba(74,56,38,.16); }
.btn-ghost:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-sm); }
.btn-wa { background: #25992f; color: #fff; box-shadow: 0 10px 24px rgba(37,153,47,.3); }
.btn-wa:hover { transform: translateY(-2px); background: #1f8628; box-shadow: 0 16px 32px rgba(37,153,47,.4); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }
.btn-lg { padding: 20px 40px; font-size: 1.12rem; }
.btn-block { width: 100%; }

.cta-note { font-size: .9rem; color: var(--ink-faint); margin-top: 12px; display: flex; align-items: center; gap: 7px; justify-content: center; }

/* ============================================================
   HERO — sky with balloons
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, #fff 0%, var(--cream-0) 30%, var(--cream-2) 100%);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 clamp(70px, 9vw, 120px);
}
.sky-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
/* soft cloud blobs */
.cloud { position: absolute; border-radius: 50%; background: #fff; filter: blur(28px); opacity: .55; }
.cloud.c1 { width: 320px; height: 150px; top: 8%; left: -60px; }
.cloud.c2 { width: 260px; height: 120px; top: 30%; right: -40px; opacity: .4; }
.cloud.c3 { width: 200px; height: 90px; bottom: 14%; left: 18%; opacity: .35; }

.balloon-float {
  position: absolute;
  top: -160px;
  will-change: transform;
  animation-name: drift-down;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.balloon-float .sway { animation: sway ease-in-out infinite alternate; transform-origin: center; }
@keyframes drift-down {
  from { transform: translateY(-180px); }
  to   { transform: translateY(calc(100vh + 200px)); }
}
@keyframes sway {
  from { transform: translateX(-16px) rotate(-4deg); }
  to   { transform: translateX(16px) rotate(4deg); }
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 940px; margin: 0 auto; }
.hero-logo { width: 124px; height: 124px; border-radius: 50%; margin: 0 auto 26px; box-shadow: var(--shadow); animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero .eyebrow { margin-bottom: 14px; }
.hero h1 .accent { color: var(--coral-ink); position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 2%; right: 2%; bottom: 4px; height: .26em;
  background: var(--butter); border-radius: 6px; z-index: -1; opacity: .85;
}
.hero p.sub { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--ink-soft); max-width: 700px; margin: 30px auto 0; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 28px; margin-top: 44px;
}
.trust-strip .ts-item { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .96rem; color: var(--ink-soft); }
.trust-strip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral-ink); }

/* video / reel placeholder under hero */
.hero-media {
  position: relative; z-index: 2;
  max-width: 920px; margin: 56px auto 0;
}

/* ---------- Placeholder media ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(74,56,38,.05) 0 12px, rgba(74,56,38,.02) 12px 24px),
    var(--cream-2);
  border: 1.5px dashed rgba(74,56,38,.22);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: var(--ink-faint);
  text-align: center; padding: 24px;
}
.ph .ph-label { font-family: 'Nunito Sans', monospace; font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.ph .ph-sub { font-size: .82rem; max-width: 280px; }
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x5 { aspect-ratio: 4 / 5; }
.ph-1x1 { aspect-ratio: 1 / 1; }

/* ---------- Real photo frame ---------- */
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.photo-frame.ph-4x5 { aspect-ratio: 4 / 5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(74,56,38,.06); border-radius: inherit; pointer-events: none; }
.ph-play { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.85); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.ph-play::after { content: ''; border-left: 22px solid var(--coral-ink); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }

/* ============================================================
   GENERIC SECTION HEADINGS
   ============================================================ */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.sec-head p { font-size: 1.15rem; color: var(--ink-soft); margin-top: 16px; }

/* ============================================================
   VALUE / OPENING
   ============================================================ */
.opening { background: var(--cream-0); }
.opening-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.opening-copy p { margin-bottom: 18px; font-size: 1.16rem; color: var(--ink-soft); }
.opening-copy p strong { color: var(--ink); font-weight: 800; }
.opening-copy .kicker { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 22px; }
.opening-media { display: grid; gap: 16px; }
.opening-media .ph-tall { aspect-ratio: 4/5; }

/* ============================================================
   PAIN
   ============================================================ */
.pain { background: linear-gradient(180deg, var(--cream-0), var(--coral-wash)); }
.pain-list { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.7); border-radius: var(--radius-s);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.pain-item .x {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--coral); display: grid; place-items: center; margin-top: 2px;
}
.pain-item .x::before, .pain-item .x::after {
  content: ''; position: absolute; width: 13px; height: 2.5px; background: #fff; border-radius: 2px;
}
.pain-item .x::before { transform: rotate(45deg); }
.pain-item .x::after { transform: rotate(-45deg); }
.pain-item p { font-size: 1.05rem; color: var(--ink); }
.pain-punch {
  text-align: center; max-width: 620px; margin: 46px auto 0;
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.3;
}
.pain-punch span { color: var(--coral-ink); }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.solution-copy p { margin-bottom: 18px; font-size: 1.14rem; color: var(--ink-soft); }
.solution-copy p strong { color: var(--ink); font-weight: 800; }
.badge-100 {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage-wash); color: var(--teal-deep); font-weight: 800;
  padding: 9px 18px; border-radius: 999px; font-size: .95rem; margin-bottom: 22px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--sky-wash); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; }
.benefit-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.benefit-card p { font-size: .98rem; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   TEAM / FOUNDERS
   ============================================================ */
.team { background: linear-gradient(180deg, var(--sky-wash), var(--cream-0)); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 920px; margin: 0 auto; }
.member {
  background: #fff; border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.member-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-2); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-years {
  position: absolute; top: 16px; left: 16px;
  background: rgba(253,248,236,.94); color: var(--coral-ink); font-weight: 800;
  font-size: .82rem; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: flex; align-items: baseline; gap: 5px;
}
.member-years b { font-family: var(--serif); font-size: 1.05rem; line-height: 1; }
.member-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.member-body h3 { font-size: 1.5rem; line-height: 1.1; }
.member-role { font-family: var(--hand); font-size: 1.3rem; color: var(--teal-deep); line-height: 1; margin: 4px 0 14px; }
.member-body p { font-size: 1rem; color: var(--ink-soft); flex: 1; margin-bottom: 20px; }
.member-ig {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-weight: 800; font-size: .95rem; color: var(--ink);
  background: var(--cream-1); padding: 10px 18px; border-radius: 999px; transition: background .2s, color .2s;
}
.member-ig:hover { background: var(--coral-wash); color: var(--coral-ink); }
.team-note { text-align: center; max-width: 640px; margin: 46px auto 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.4; }

@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 56px; }
.proof-chip {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 999px; padding: 14px 26px; box-shadow: var(--shadow-sm);
}
.proof-chip .num { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: var(--coral-ink); line-height: 1; }
.proof-chip .lbl { font-weight: 700; font-size: .92rem; color: var(--ink-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.testi-card .quote-mark { font-family: var(--serif); font-size: 3.4rem; color: var(--coral); line-height: .6; height: 28px; }
.testi-card .testi-body { font-size: 1.04rem; color: var(--ink); font-style: italic; flex: 1; }
.testi-card .testi-who { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-3); flex: none; display: grid; place-items: center; color: var(--ink-faint); font-weight: 800; }
.testi-card .testi-name { font-weight: 800; font-size: .95rem; }
.testi-card .testi-meta { font-size: .82rem; color: var(--ink-faint); }
.testi-note { text-align: center; font-size: .92rem; color: var(--ink-faint); margin-top: 30px; font-style: italic; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: linear-gradient(180deg, var(--cream-0), var(--butter-wash)); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  background: #fff; border-radius: var(--radius-l); padding: 36px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 2px solid transparent; transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { border-color: var(--coral-ink); box-shadow: var(--shadow); transform: scale(1.03); }
.pkg.featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--coral-ink); color: #fff; font-weight: 800; font-size: .8rem;
  letter-spacing: .04em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 8px 18px rgba(224,96,46,.32);
}
.pkg-emoji { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px; }
.pkg h3 { font-size: 1.5rem; }
.pkg .pkg-tag { font-size: .96rem; color: var(--ink-soft); margin: 6px 0 22px; min-height: 44px; }
.pkg ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.pkg li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.pkg li .check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; margin-top: 2px; }
.pkg li .check svg { width: 12px; height: 12px; }
.pkg-price { border-top: 1.5px dashed rgba(74,56,38,.18); padding-top: 22px; margin-bottom: 22px; }
.pkg-price .was { font-size: .95rem; color: var(--ink-faint); text-decoration: line-through; }
.pkg-price .now { font-family: var(--serif); font-weight: 800; font-size: 2.3rem; color: var(--ink); line-height: 1; }
.pkg-price .now .cur { font-size: 1.2rem; vertical-align: super; }
.pkg-price .terms { font-size: .9rem; color: var(--ink-soft); margin-top: 6px; }

/* ============================================================
   OBJECTIONS
   ============================================================ */
.objections { background: var(--cream-0); }
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.obj-card { background: var(--sage-wash); border-radius: var(--radius); padding: 30px 32px; }
.obj-card .obj-q { font-family: var(--serif); font-size: 1.22rem; font-weight: 700; color: var(--coral-ink); margin-bottom: 14px; display: flex; gap: 10px; }
.obj-card .obj-q .qmk { font-size: 1.6rem; line-height: 1; color: var(--coral); }
.obj-card p { font-size: 1.02rem; color: var(--ink-soft); }
.obj-card p strong { color: var(--ink); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--sky-wash); }
.guarantee-box {
  background: #fff; border-radius: var(--radius-l); padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow); display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  max-width: 980px; margin: 0 auto;
}
.seal {
  width: 150px; height: 150px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 50% 40%, #fff, var(--cream-2));
  border: 4px solid var(--teal); display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-sm); position: relative;
}
.seal .seal-balloon { width: 54px; }
.seal::after {
  content: 'SELO DE QUALIDADE'; position: absolute; bottom: 18px; left: 0; right: 0;
  font-size: .56rem; font-weight: 800; letter-spacing: .12em; color: var(--teal-deep);
}
.guarantee-box h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.guarantee-box p { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 12px; }

/* ============================================================
   URGENCY
   ============================================================ */
.urgency { background: linear-gradient(180deg, var(--coral-wash), var(--cream-1)); }
.urgency-box { text-align: center; max-width: 760px; margin: 0 auto; }
.urgency-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral); color: #7a2d10; font-weight: 800; font-size: .92rem;
  padding: 9px 20px; border-radius: 999px; margin-bottom: 24px;
}
.urgency-box h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.urgency-box p { font-size: 1.14rem; color: var(--ink-soft); margin-bottom: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-0); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-s); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 26px; font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--ink);
}
.faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--coral-wash); display: grid; place-items: center; transition: transform .3s ease, background .3s; }
.faq-q .chev::before { content: ''; width: 9px; height: 9px; border-right: 2.4px solid var(--coral-ink); border-bottom: 2.4px solid var(--coral-ink); transform: rotate(45deg) translate(-2px,-2px); }
.faq-item.open .chev { transform: rotate(180deg); background: var(--coral); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 1.04rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: linear-gradient(180deg, var(--cream-2), var(--cream-3)); overflow: hidden; position: relative; }
.final-inner { text-align: center; max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.final-inner h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 26px; line-height: 1.1; }
.final-inner p { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 16px; }
.final-inner .closing { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; font-style: italic; color: var(--ink); margin: 30px 0; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact { background: var(--cream-0); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.contact-copy p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 22px; }
.contact-wa-btn { margin-top: 8px; }
.form-card { background: #fff; border-radius: var(--radius-l); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid rgba(74,56,38,.16); border-radius: 12px;
  background: var(--cream-0); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--coral-ink); box-shadow: 0 0 0 4px rgba(224,96,46,.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.field .err { color: #c0432a; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select { border-color: #c0432a; }
.field.invalid .err { display: block; }
.lgpd { font-size: .82rem; color: var(--ink-faint); margin-top: 8px; line-height: 1.5; }
.lgpd a { color: var(--teal-deep); text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .ok-ring { width: 72px; height: 72px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #e9ddcc; padding: 60px 0 40px; }
.footer .ps {
  background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 28px 32px;
  font-size: 1.06rem; line-height: 1.6; margin-bottom: 48px; max-width: 860px;
}
.footer .ps strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; }
.footer-brand .fb-name { font-family: var(--serif); font-weight: 800; font-size: 1.4rem; color: #fff; }
.footer p.about { color: #c7b9a6; font-size: .98rem; max-width: 340px; }
.footer h4 { font-family: var(--sans); font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #b6a48d; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: #e9ddcc; font-size: .98rem; transition: color .2s; }
.footer ul a:hover { color: var(--coral); }
.footer .ig-link { display: inline-flex; align-items: center; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #9c8b77; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(253,248,236,.95); backdrop-filter: blur(8px);
  box-shadow: 0 -4px 24px rgba(120,90,50,.14);
  padding: 12px 16px; display: none; gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 14px; }

/* floating whatsapp */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 60px; height: 60px; border-radius: 50%; background: #25992f;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,153,47,.4);
  transition: transform .2s; animation: bob 4s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.08); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg.featured { transform: none; }
  .pkg.featured:hover { transform: translateY(-6px); }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .opening-grid, .solution-grid, .contact-grid { grid-template-columns: 1fr; }
  .solution-media { order: -1; }
  .obj-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .mobile-cta { display: flex; }
  .wa-fab { display: none; }
  .footer-bottom { flex-direction: column; }
  .benefit-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  body { padding-bottom: 76px; }
}
