/* =========================================================================
   PARAÍSO DO MASCOTE — Landing de Adestramento
   Page styles. Imports brand tokens from tokens.css.
   ========================================================================= */
@import url("tokens.css");

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--pm-muted);
  overflow-x: hidden;
}

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

/* layout ----------------------------------------------------------------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section   { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tint  { background: var(--pm-cream); }
.section--sage  { background: var(--pm-sage); color: var(--fg-on-green); }

/* eyebrow + titles ------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;
  color: var(--pm-green-head); text-transform: none;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--pm-orange);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,0.9); }
.eyebrow--light::before { background: var(--pm-orange-soft); }

.title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 600; line-height: 1.1; letter-spacing: var(--ls-tight);
  color: var(--pm-orange); margin: 0 0 18px; text-wrap: balance;
}
.title--green { color: var(--pm-green-head); }
.title--light { color: #fff; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55;
  color: var(--pm-muted); max-width: 56ch; margin: 0;
}
.lead--light { color: rgba(255,255,255,0.92); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: var(--ls-tight);
  border: 0; cursor: pointer; transition: var(--dur) var(--ease);
  text-decoration: none;
}
.btn-wa {
  padding: 16px 30px; border-radius: var(--r-pill);
  background: linear-gradient(92deg, var(--pm-whatsapp-a), var(--pm-whatsapp-b));
  color: #fff; font-size: 1.12rem;
  box-shadow: 0 14px 30px -14px rgba(48,201,107,0.7);
}
.btn-wa:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 20px 38px -14px rgba(48,201,107,0.8); }
.btn-wa svg, .btn-wa img { width: 22px; height: 22px; }
.btn-wa--sm { padding: 11px 20px; font-size: 1rem; }
.btn-wa--lg { padding: 20px 40px; font-size: 1.25rem; }

.btn-primary {
  padding: 16px 32px; border-radius: var(--r-pill);
  background: var(--pm-orange-soft); color: var(--pm-brown); font-size: 1.1rem;
}
.btn-primary:hover { background: var(--pm-orange); }
.btn-ghost {
  padding: 15px 30px; border-radius: var(--r-pill);
  background: transparent; color: var(--pm-green-head);
  box-shadow: inset 0 0 0 2px rgba(39,79,25,0.25); font-size: 1.05rem;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--pm-orange); color: var(--pm-orange); }

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--pm-sage);
  box-shadow: 0 2px 18px -10px rgba(39,79,25,0.6);
}
.nav { display: flex; align-items: center; gap: 24px; height: 84px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 58px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: 8px; }
.nav__links a {
  color: #fff; font-weight: 600; font-size: 1.02rem; letter-spacing: var(--ls-tight);
  position: relative; padding: 4px 0; transition: var(--dur);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--pm-orange-soft); transition: right var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--pm-orange-soft); }
.nav__links a:hover::after { right: 0; }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav__phone { color: #fff; font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.nav__phone svg { width: 18px; height: 18px; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; margin-left: auto; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; }

/* =========================================================================
   HERO  (3 variants toggled by [data-hero] on .hero)
   ========================================================================= */
.hero { position: relative; overflow: hidden; }
.hero-variant { display: none; }
.hero[data-hero="pro"]     .hero-variant[data-variant="pro"]     { display: block; }
.hero[data-hero="classic"] .hero-variant[data-variant="classic"] { display: block; }
.hero[data-hero="bold"]    .hero-variant[data-variant="bold"]    { display: block; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--r-pill); padding: 9px 16px;
  font-size: 0.92rem; font-weight: 600; color: var(--pm-green-head);
  box-shadow: var(--shadow-soft);
}
.hero-badge svg { width: 17px; height: 17px; color: var(--pm-orange); }
.stars { color: var(--pm-orange); letter-spacing: 1px; }

.hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 30px; }
.hero-note { font-size: 0.95rem; color: var(--pm-muted); font-weight: 600; }

/* --- Variant PRO : cream, headline left + photo collage right ----------- */
.heroP { background:
  radial-gradient(1100px 520px at 88% -8%, rgba(247,169,78,0.22), transparent 60%),
  var(--pm-cream); }
.heroP__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 6vw, 90px);
}
.heroP h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.04;
  letter-spacing: var(--ls-tight); color: var(--pm-green-head); margin: 0 0 22px;
  text-wrap: balance;
}
.heroP h1 .hl { color: var(--pm-orange); }
.heroP .lead { font-size: 1.2rem; }
.hero-eyebrow-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--pm-green-head); font-weight: 700;
  border-radius: var(--r-pill); padding: 9px 18px; font-size: 0.95rem;
  box-shadow: var(--shadow-soft); margin-bottom: 24px;
}
.hero-eyebrow-chip img { width: 18px; height: 18px; }

.hero-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-collage figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tall { grid-row: span 2; }
.hero-collage .h-280 { height: 280px; }
.hero-collage .h-180 { height: 180px; }
.hero-collage .h-200 { height: 200px; }
.hero-float {
  position: absolute; left: 10px; bottom: 2px; z-index: 3;
  background: #fff; border-radius: 22px; padding: 18px 24px;
  box-shadow: var(--shadow-pop); display: flex; align-items: center; gap: 16px;
}
.hero-float .num { font-size: 2.3rem; font-weight: 700; color: var(--pm-orange); line-height: 1; }
.hero-float .lbl { font-size: 0.97rem; font-weight: 600; color: var(--pm-green-head); line-height: 1.2; }
.hero-float .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--pm-cream); display: grid; place-items: center; }
.hero-float .ico svg { width: 27px; height: 27px; color: var(--pm-orange); }

/* --- Variant CLASSIC : orange band + cut-out dog ------------------------ */
.heroC { background:
  radial-gradient(900px 500px at 18% 120%, rgba(255,255,255,0.16), transparent 60%),
  linear-gradient(160deg, var(--pm-orange) 0%, var(--pm-orange-soft) 100%); }
.heroC__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center;
  min-height: 540px; padding: 60px 0;
}
.heroC h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 700; line-height: 1.03;
  letter-spacing: var(--ls-tight); color: #fff; margin: 0 0 20px; text-wrap: balance;
  text-shadow: 0 2px 18px rgba(72,31,0,0.18);
}
.heroC .lead { color: rgba(255,255,255,0.95); font-size: 1.18rem; }
.heroC .hero-eyebrow-chip { background: rgba(72,31,0,0.18); color: #fff; backdrop-filter: blur(2px); }
.heroC .hero-badge { background: rgba(255,255,255,0.16); color: #fff; box-shadow: none; }
.heroC .hero-badge svg { color: #fff; }
.heroC__dog { position: relative; }
.heroC__dog img { width: 115%; max-width: 115%; filter: drop-shadow(0 30px 30px rgba(72,31,0,0.28)); }

/* --- Variant BOLD : big display + inline icons + photo ------------------ */
.heroB { background:
  radial-gradient(900px 460px at 92% 4%, rgba(247,169,78,0.28), transparent 60%),
  var(--pm-cream); }
.heroB__inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding: clamp(44px, 5vw, 78px) 0;
}
.heroB h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700; line-height: 0.98;
  letter-spacing: -0.03em; color: var(--pm-green-head); margin: 0 0 22px; text-transform: none;
}
.heroB h1 .word-orange { color: var(--pm-orange); }
.heroB h1 .inline-ico {
  display: inline-grid; place-items: center; vertical-align: middle;
  width: 0.92em; height: 0.92em; margin: 0 0.06em; transform: translateY(-0.04em);
}
.heroB h1 .inline-ico svg { width: 100%; height: 100%; }
.heroB__media { position: relative; }
.heroB__media .ph {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4/4.4; background: var(--pm-beige);
}
.heroB__media .ph img { width: 100%; height: 100%; object-fit: cover; }
.heroB__rating {
  position: absolute; top: -18px; left: -18px; background: #fff; border-radius: 18px;
  padding: 14px 18px; box-shadow: var(--shadow-pop); text-align: center;
}
.heroB__rating .big { font-size: 1.8rem; font-weight: 700; color: var(--pm-green-head); line-height: 1; }
.heroB__rating .stars { font-size: 0.9rem; }
.heroB__rating .sub { font-size: 0.72rem; font-weight: 600; color: var(--pm-muted); letter-spacing: 0.04em; }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee { background: var(--pm-orange); overflow: hidden; padding: 16px 0; }
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 34px;
  color: #fff; font-weight: 700; font-size: 1.25rem; letter-spacing: var(--ls-tight);
  white-space: nowrap;
}
.marquee__item svg { width: 26px; height: 28px; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: var(--pm-orange);
  line-height: 1; letter-spacing: -0.03em;
}
.stat__lbl { margin-top: 10px; font-weight: 600; color: var(--pm-green-head); font-size: 1.02rem; }
.stat + .stat { border-left: 1px solid var(--pm-line); }

/* =========================================================================
   PROBLEMS
   ========================================================================= */
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
.problem {
  background: #fff; border-radius: var(--r-card); padding: 26px 22px;
  box-shadow: var(--shadow-soft); transition: var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 12px;
}
.problem:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.problem__ico { width: 48px; height: 48px; border-radius: 14px; background: var(--pm-cream); display: grid; place-items: center; }
.problem__ico svg { width: 26px; height: 26px; color: var(--pm-orange); }
.problem__name { font-weight: 700; color: var(--pm-green-head); font-size: 1.12rem; }
.problem__desc { font-size: 0.95rem; color: var(--pm-muted); line-height: 1.45; }

/* =========================================================================
   METHOD (steps)
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 14px; counter-reset: step; }
.step {
  background: #fff; border-radius: var(--r-card); padding: 32px 26px;
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 14px; right: 20px;
  font-size: 3rem; font-weight: 700; color: rgba(244,132,47,0.16); line-height: 1;
}
.step__ico { width: 54px; height: 54px; border-radius: 50%; background: var(--pm-sage); display: grid; place-items: center; margin-bottom: 18px; }
.step__ico svg { width: 27px; height: 27px; color: #fff; }
.step__title { font-weight: 700; color: var(--pm-green-head); font-size: 1.2rem; margin-bottom: 8px; }
.step__desc { font-size: 0.98rem; color: var(--pm-muted); line-height: 1.5; }

/* =========================================================================
   FEATURE / AR LIVRE  (alternating image rows)
   ========================================================================= */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row + .feature-row { margin-top: clamp(48px, 7vw, 96px); }
.feature-row--rev .feature-row__media { order: 2; }
.feature-row__media img { width: 100%; height: 260px; border-radius: var(--r-md); box-shadow: var(--shadow-card); object-fit: cover; }
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; color: var(--pm-muted); }
.feature-list li svg { width: 24px; height: 24px; color: var(--pm-whatsapp-a); flex-shrink: 0; margin-top: 2px; }

/* =========================================================================
   VIDEO / GALLERY
   ========================================================================= */
.video-wrap { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-pop); margin-top: 16px; aspect-ratio: 16/8.2; }
.video-wrap img { width: 100%; height: 100%; object-fit: cover; }
.video-wrap__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(39,79,25,0.42), rgba(39,79,25,0.04)); display: grid; place-items: center; cursor: pointer; }
.play-btn { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; transition: var(--dur) var(--ease); }
.play-btn svg { width: 32px; height: 32px; color: var(--pm-orange); margin-left: 5px; }
.video-wrap:hover .play-btn { transform: scale(1.08); background: #fff; }
.video-cap { position: absolute; left: 26px; bottom: 22px; color: #fff; font-weight: 700; font-size: 1.3rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 1/1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
/* carrossel wrapper */
.testi-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex; gap: 24px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.testi {
  min-width: calc(33.333% - 16px); background: #fff; border-radius: var(--r-card); padding: 28px 24px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px;
  box-sizing: border-box;
}
.testi__header { display: flex; align-items: center; justify-content: space-between; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--pm-sage); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; overflow: hidden; }
.testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi__name { display: block; font-weight: 700; color: #202124; font-size: 0.97rem; }
.testi__meta { display: block; font-size: 0.82rem; color: #70757a; }
.testi__google { width: 20px; height: 20px; flex-shrink: 0; }
.testi__rating { display: flex; align-items: center; gap: 10px; }
.testi__stars { color: #fbbc04; font-size: 1rem; letter-spacing: 1px; }
.testi__time { font-size: 0.82rem; color: #70757a; }
.testi__quote { font-size: 1rem; line-height: 1.65; color: #3c4043; margin: 0; max-width: 72ch; }
.testi__photos { display: flex; gap: 8px; margin-top: 4px; }
.testi__photo-placeholder { width: 80px; height: 68px; border-radius: 8px; background: var(--pm-line); flex-shrink: 0; }
/* controls */
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--pm-line);
  background: #fff; cursor: pointer; display: grid; place-items: center;
  transition: var(--dur); color: var(--pm-green-head);
}
.testi-btn:hover { border-color: var(--pm-orange); color: var(--pm-orange); }
.testi-btn svg { width: 18px; height: 18px; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pm-line); transition: var(--dur); cursor: pointer; }
.testi-dot--active { background: var(--pm-orange); width: 24px; border-radius: 4px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 860px; margin: 14px auto 0; }
.faq-item { border-bottom: 1px solid var(--pm-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--font-sans); font-weight: 700;
  font-size: 1.18rem; color: var(--pm-green-head); letter-spacing: var(--ls-tight);
  transition: var(--dur);
}
.faq-q:hover { color: var(--pm-orange); }
.faq-q__icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--pm-cream); display: grid; place-items: center; transition: var(--dur) var(--ease); }
.faq-q__icon svg { width: 17px; height: 17px; color: var(--pm-orange); transition: var(--dur) var(--ease); }
.faq-item.open .faq-q { color: var(--pm-orange); }
.faq-item.open .faq-q__icon { background: var(--pm-orange); }
.faq-item.open .faq-q__icon svg { color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-a__inner { padding: 0 4px 24px; font-size: 1.04rem; line-height: 1.6; color: var(--pm-muted); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.cta-final { position: relative; text-align: center; overflow: hidden; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; line-height: 1.08; margin: 0 0 18px; letter-spacing: var(--ls-tight); text-wrap: balance; }
.cta-final p { color: rgba(255,255,255,0.92); font-size: 1.2rem; max-width: 56ch; margin: 0 auto 30px; }
.cta-paw { position: absolute; opacity: 0.08; color: #fff; pointer-events: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--pm-green-head); color: rgba(255,255,255,0.82); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo img { height: 92px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.98rem; line-height: 1.6; max-width: 32ch; }
.footer h4 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { color: rgba(255,255,255,0.82); font-size: 0.98rem; transition: var(--dur); }
.footer a:hover { color: var(--pm-orange-soft); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--pm-orange-soft); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-whatsapp-a), var(--pm-whatsapp-b));
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(48,201,107,0.7);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 90ms; }
  .reveal[data-delay="2"] { transition-delay: 180ms; }
  .reveal[data-delay="3"] { transition-delay: 270ms; }
}

/* =========================================================================
   TWEAK: DISPLAY TITLE STYLE
   ========================================================================= */
.display-titles h1,
.display-titles .title,
.display-titles .cta-final h2,
.display-titles .step__title,
.display-titles .problem__name {
  font-family: "Fredoka", var(--font-sans);
  letter-spacing: -0.005em;
}
.display-titles .heroP h1,
.display-titles .heroC h1,
.display-titles .heroB h1 { font-weight: 600; letter-spacing: -0.01em; }

/* Motion OFF: reveals are shown immediately, no scroll animation */
.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav__cta .btn-wa span.long { display: none; }
  .stats, .problems-grid, .steps, .gallery { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .heroP__inner, .heroC__inner, .heroB__inner, .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row--rev .feature-row__media { order: 0; }
  .heroC__dog { order: -1; max-width: 360px; margin: 0 auto; }
  .heroP__media { order: -1; }
  .stat:nth-child(3) { border-left: 0; }
}
@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .problems-grid, .steps, .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--pm-line); padding-top: 22px; }
  .stat:nth-child(2) { border-left: 0; border-top: 0; padding-top: 8px; }
  .stat:nth-child(3) { border-top: 1px solid var(--pm-line); padding-top: 22px; }
  .stat:nth-child(4) { border-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__phone { display: none; }
  .hero-collage { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-collage .h-280 { height: 180px; }
  .hero-collage .h-180 { height: 110px; }
  .hero-collage .h-200 { height: 124px; }
  .heroP__inner, .heroC__inner, .heroB__inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-float { padding: 12px 16px; gap: 10px; border-radius: 16px; left: -8px; }
  .hero-float .num { font-size: 1.6rem; }
  .hero-float .lbl { font-size: 0.82rem; }
  .hero-float .ico { width: 38px; height: 38px; }
  .hero-float .ico svg { width: 20px; height: 20px; }
  /* testimonials: 1 card visible on mobile */
  .testi { min-width: 100%; }
  /* feature carousel — mobile only */
  .feature-carousel { overflow: hidden; }
  .feature-carousel__track { display: flex; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
  .feature-carousel__track .feature-row { min-width: 100%; box-sizing: border-box; margin-top: 0 !important; background: #fff; border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-soft); }
  .feature-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
}

/* desktop: hide carousel controls, reset track */
.feature-carousel__controls { display: none; }
@media (max-width: 1080px) {
  .feature-carousel__track { display: block; }
}
@media (max-width: 620px) {
  .feature-carousel__track { display: flex; }
  .feature-carousel__controls { display: flex; }
}
