:root {
  --ink: #070707;
  --paper: #f3f3f0;
  --white: #ffffff;
  --magenta: #e21d78;
  --muted: #62625f;
  --line: rgba(7, 7, 7, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --shell: 1280px;
  --gutter: clamp(20px, 3.2vw, 52px);
  --section-space: clamp(82px, 9vw, 132px);
  --display: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

.shell { width: min(calc(100% - (var(--gutter) * 2)), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-dark { color: var(--white); background: var(--ink); }
.inner-page { min-height: 100svh; background: var(--paper); }

.section-kicker {
  margin: 0 0 22px;
  color: var(--magenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-kicker-light { color: var(--white); }
.section-kicker-light::before {
  width: 28px;
  height: 6px;
  margin-right: 12px;
  display: inline-block;
  background: var(--magenta);
  content: "";
  vertical-align: 1px;
}

h1, h2, h3, h4, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 950; letter-spacing: -0.065em; text-transform: uppercase; }
h1 { font-size: clamp(58px, 7vw, 104px); line-height: 0.88; }
h2 { font-size: clamp(48px, 5.8vw, 84px); line-height: 0.91; }
h1 span, h2 span { color: var(--magenta); }
.display-heading > h1 span,
.display-heading > h2 span { display: block; }
.section-intro { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }

.button, .header-cta {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible,
.header-cta:hover, .header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.12);
  outline: none;
}
.button-primary { color: var(--white); background: var(--magenta); border-color: var(--magenta); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 14px 32px rgba(226, 29, 120, 0.24); }
.text-link, .instagram-link, .outline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.text-link:hover, .text-link:focus-visible,
.instagram-link:hover, .instagram-link:focus-visible,
.outline-link:hover, .outline-link:focus-visible { color: var(--magenta); outline: none; }
.text-link-light { color: var(--white); }

/* Header and footer */
.inner-header, .home-hero { background: var(--white); }
.site-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.brand-official { width: 166px; height: 52px; position: relative; display: block; overflow: hidden; }
.brand-official img { width: 168px; max-width: none; position: absolute; left: -1px; top: -20px; }
.main-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.main-nav a {
  padding-block: 9px;
  border-bottom: 2px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--magenta); border-color: var(--magenta); outline: none; }
.mobile-nav { display: none; position: relative; justify-self: end; }
.mobile-nav summary {
  min-height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary:focus-visible { border-color: var(--magenta); outline: 2px solid var(--magenta); outline-offset: 3px; }
.mobile-nav summary span { color: var(--magenta); font-size: 17px; transition: transform 180ms ease; }
.mobile-nav[open] summary span { transform: rotate(45deg); }
.mobile-nav-panel {
  width: min(290px, calc(100vw - 40px));
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.mobile-nav-panel a { padding: 17px 19px; border-bottom: 1px solid var(--line-light); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { background: var(--magenta); outline: none; }

.site-footer { padding-block: 38px; background: var(--white); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 34px; align-items: center; }
.brand-footer { justify-self: start; }
.footer-grid > p { margin: 0; color: #7b7b78; font-size: 11px; text-align: center; }
.footer-links { justify-self: end; display: flex; gap: 24px; }
.footer-links a { font-size: 10px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--magenta); outline: none; }

/* Shared editorial layouts */
.split-heading { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 6fr) minmax(260px, 3fr); gap: 44px; align-items: start; }
.split-heading .section-kicker { margin-top: 8px; }
.split-heading h2 { font-size: clamp(46px, 5.2vw, 76px); }

.page-cta { min-height: 530px; position: relative; overflow: hidden; display: flex; align-items: center; }
.page-cta-mark { position: absolute; right: -5vw; bottom: -10vw; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 42vw; line-height: .82; letter-spacing: -.16em; }
.page-cta-inner { position: relative; z-index: 1; padding-block: 82px; }
.page-cta h2 { max-width: 1050px; font-size: clamp(47px, 5.8vw, 82px); }
.page-cta h2 > span { display: block; }
.page-cta-title { color: var(--white); }
.page-cta-highlight { color: var(--magenta); }
.page-cta .button { margin-top: 34px; }

/* Home */
.home-page { background: var(--white); }
.home-page section[id] { scroll-margin-top: 88px; }
.site-header-home {
  min-height: 78px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom-color: rgba(7, 7, 7, 0.1);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.site-header-home .header-cta { min-height: 44px; padding-inline: 20px; color: var(--white); background: var(--ink); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.home-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7f7f4 100%); }
.home-hero::before { width: 520px; height: 520px; position: absolute; left: -260px; bottom: -300px; border-radius: 50%; background: rgba(226, 29, 120, 0.045); content: ""; filter: blur(2px); }
.home-hero-grid { min-height: calc(100svh - 78px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.home-hero-copy { max-width: 790px; padding-block: 76px 84px; }
.home-hero-copy h1 { max-width: 790px; font-size: clamp(57px, 6.35vw, 94px); line-height: .92; }
.home-hero-copy h1 span { margin-top: 10px; display: block; color: var(--magenta); }
.home-hero-lead { max-width: 570px; margin: 30px 0 0; color: #464643; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.hero-actions .text-link { color: var(--muted); }
.hero-actions .text-link span { margin-left: 10px; color: var(--magenta); }
.hero-proof { margin: 42px 0 0; display: flex; align-items: baseline; gap: 12px; }
.hero-proof strong { color: var(--magenta); font-size: 26px; letter-spacing: -.05em; }
.hero-proof span { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.home-hero-visual { min-height: 690px; align-self: end; position: relative; overflow: hidden; border-radius: 36px 36px 0 0; background: linear-gradient(145deg, #f2f2ef 0%, #e7e7e3 100%); }
.hero-halo { width: 520px; height: 520px; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(226, 29, 120, .22); border-radius: 50%; box-shadow: 0 0 90px rgba(226, 29, 120, .1); transform: translate(-46%, -51%); }
.hero-halo::before, .hero-halo::after { position: absolute; inset: 12%; border: 1px solid rgba(7,7,7,.065); border-radius: 50%; content: ""; }
.hero-halo::after { inset: 29%; border-color: rgba(226,29,120,.1); }
.hero-lettermark { position: absolute; right: -2%; top: 5%; color: rgba(7,7,7,.035); font-size: 480px; font-weight: 950; line-height: .8; letter-spacing: -.13em; }
.home-hero-visual > img { width: 96%; height: 96%; position: absolute; z-index: 2; right: -7%; bottom: -2%; object-fit: contain; object-position: right bottom; }
.hero-visual-note { max-width: 205px; margin: 0; padding: 17px 18px; position: absolute; z-index: 3; left: 24px; bottom: 24px; border: 1px solid rgba(7,7,7,.09); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 14px 38px rgba(7,7,7,.08); color: var(--muted); font-size: 11px; line-height: 1.45; backdrop-filter: blur(12px); }
.hero-visual-note span { display: block; color: var(--ink); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.home-evolution { background: var(--paper); }
.home-section-heading { display: grid; grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr); gap: 52px; align-items: end; }
.home-section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -8px; }
.home-section-heading h2 { max-width: 880px; }
.home-section-heading h2 span { display: block; }
.home-section-heading > p:last-child { max-width: 440px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.pillars-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.pillars-grid article { min-height: 250px; padding: 28px; grid-column: span 2; display: flex; flex-direction: column; border: 1px solid rgba(7,7,7,.08); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(7,7,7,.025); transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease; }
.pillars-grid article:nth-last-child(-n+2) { grid-column: span 3; min-height: 230px; }
.pillars-grid article:hover { transform: translateY(-4px); border-color: rgba(226,29,120,.24); box-shadow: 0 20px 44px rgba(7,7,7,.06); }
.pillar-number { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(226,29,120,.28); border-radius: 50%; color: var(--magenta); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.pillars-grid h3 { margin: auto 0 14px; font-size: clamp(25px, 2.2vw, 34px); line-height: .95; letter-spacing: -.05em; text-transform: uppercase; }
.pillars-grid p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.app-section { position: relative; overflow: hidden; background: var(--white); }
.app-section-card { position: relative; overflow: hidden; border-radius: 42px; color: var(--white); background: #0b0b0d; box-shadow: 0 34px 80px rgba(7,7,7,.12); }
.app-section-card::before { position: absolute; right: -7%; top: -13%; color: rgba(255,255,255,.025); content: "P/H"; font-size: min(29vw, 420px); font-weight: 950; line-height: 1; letter-spacing: -.16em; }
.app-section-card::after { width: 440px; height: 440px; position: absolute; right: 9%; bottom: -21%; border-radius: 50%; background: rgba(226,29,120,.16); content: ""; filter: blur(80px); animation: homeGlow 7s ease-in-out infinite alternate; }
.app-section-grid { min-height: 740px; padding: clamp(54px, 6.5vw, 90px); position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 6fr) minmax(400px, 6fr); gap: 64px; align-items: center; }
.app-copy h2 { max-width: 690px; font-size: clamp(48px, 5.2vw, 76px); }
.app-copy h2 span { display: block; }
.app-copy > p:not(.section-kicker) { max-width: 570px; margin: 28px 0 0; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.55; }
.app-feature-grid { max-width: 590px; margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.app-feature-grid span { min-height: 42px; padding: 0 15px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.8); font-size: 9px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.app-feature-grid span::before { width: 6px; height: 6px; margin-right: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--magenta); content: ""; }
.app-store-links { margin-top: 32px; display: flex; gap: 12px; }
.app-store-links img { width: 148px; height: 46px; }
.app-phone-stage { min-height: 610px; position: relative; }
.app-phone-stage::before { width: 500px; height: 500px; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(226,29,120,.26); border-radius: 50%; box-shadow: 0 0 90px rgba(226,29,120,.09); content: ""; transform: translate(-50%,-50%); }
.app-phone { width: 252px; height: 518px; padding: 7px; position: absolute; overflow: hidden; border: 1px solid #56565a; border-radius: 43px; background: #0b0b0c; box-shadow: 0 35px 80px rgba(0,0,0,.62); transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.app-phone img { width: 100%; height: 100%; border-radius: 35px; object-fit: cover; }
.app-phone-back { left: 2%; top: 17%; transform: rotate(-5deg); opacity: .82; }
.app-phone-front { right: 5%; top: 2%; z-index: 2; transform: rotate(3deg); }
.app-section-card:hover .app-phone-back { transform: rotate(-7deg) translateY(-4px); }
.app-section-card:hover .app-phone-front { transform: rotate(2deg) translateY(-8px); }

.results-section { background: linear-gradient(180deg, #f7f7f4 0%, #fff 100%); }
.results-heading h2 { max-width: 980px; }
.results-review-layout { margin-top: 58px; display: grid; grid-template-columns: minmax(0,8fr) minmax(280px,4fr); gap: 16px; }
.results-proof-minimal { min-height: 450px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 28px; color: var(--white); background: var(--ink); }
.results-proof-minimal .results-proof-label { margin: 0 auto auto 0; color: rgba(255,255,255,.46); font-size: 9px; letter-spacing: .16em; }
.results-proof-minimal strong { color: var(--magenta); font-family: var(--display); font-size: clamp(70px,8vw,112px); line-height: .78; letter-spacing: -.08em; }
.results-proof-minimal > span:not(.results-proof-label) { margin-top: 20px; font-size: 13px; font-weight: 850; text-transform: uppercase; }
.results-proof-minimal a { min-height: 44px; margin-top: 28px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.results-proof-minimal a:hover, .results-proof-minimal a:focus-visible { color: var(--white); outline: none; }

.review-carousel { min-height: 450px; padding: clamp(30px,4vw,52px); display: flex; flex-direction: column; border: 1px solid rgba(7,7,7,.08); border-radius: 28px; background: var(--white); box-shadow: 0 18px 45px rgba(7,7,7,.035); }
.review-carousel-head, .review-carousel-controls, .review-carousel-links { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.review-carousel-head > div { display: flex; align-items: center; gap: 13px; }
.google-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-weight: 900; }
.review-carousel-head p { margin: 0; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.review-stars { color: var(--magenta); letter-spacing: .16em; }
.review-carousel-body { margin-block: auto; padding-block: 42px; }
.review-carousel-body blockquote { max-width: 930px; margin: 0; font-size: clamp(27px,3vw,44px); font-weight: 720; line-height: 1.14; letter-spacing: -.04em; }
.review-carousel-body p { margin: 20px 0 0; color: var(--magenta); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.review-arrows { display: flex; gap: 7px; }
.review-arrows button { width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; }
.review-arrows button:hover, .review-arrows button:focus-visible { color: var(--white); background: var(--ink); outline: none; }
.review-dots { display: flex; gap: 8px; }
.review-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c9c9c5; cursor: pointer; }
.review-dots button.is-active { background: var(--magenta); }
.review-carousel-links { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.review-carousel-links a { font-size: 9px; font-weight: 850; text-transform: uppercase; }
.review-carousel-links a:hover, .review-carousel-links a:focus-visible { color: var(--magenta); outline: none; }

.pabulo-section { background: var(--paper); }
.pabulo-section-grid { display: grid; grid-template-columns: minmax(380px,5fr) minmax(0,7fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.pabulo-portrait { height: 650px; position: relative; overflow: hidden; border-radius: 32px; background: var(--ink); box-shadow: 0 28px 58px rgba(7,7,7,.08); }
.pabulo-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; transition: transform 700ms ease; }
.pabulo-portrait:hover img { transform: scale(1.018); }
.pabulo-portrait::after { position: absolute; inset: 65% 0 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); content: ""; }
.pabulo-portrait figcaption { position: absolute; z-index: 2; left: 26px; bottom: 23px; color: rgba(255,255,255,.82); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.pabulo-copy h2 span { display: block; }
.pabulo-copy > p:not(.section-kicker) { max-width: 670px; margin: 23px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.pabulo-credentials { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.pabulo-credentials span { min-height: 39px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid rgba(7,7,7,.12); border-radius: 999px; background: rgba(255,255,255,.58); font-size: 9px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.inline-actions { margin-top: 28px; display: flex; gap: 24px; }

.time-teaser { background: var(--white); }
.time-teaser-heading { display: grid; grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr); gap: 52px; align-items: end; }
.time-teaser-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -8px; }
.time-teaser-heading h2 { max-width: 930px; }
.time-teaser-heading h2 span { display: block; }
.time-teaser-heading > p:last-child { max-width: 390px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.time-teaser-gallery { margin: 54px 0 24px; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 520px; gap: 14px; }
.time-teaser-gallery figure { grid-column: span 3; position: relative; overflow: hidden; border-radius: 26px; background: var(--ink); }
.time-teaser-gallery .time-gallery-featured { grid-column: span 6; }
.time-teaser-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: transform 600ms ease; }
.time-teaser-gallery figure:hover img { transform: scale(1.025); }
.time-teaser-gallery figure::after { position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.62)); content: ""; }
.time-teaser-gallery figcaption { position: absolute; z-index: 2; left: 20px; bottom: 18px; padding: 8px 11px; border-radius: 999px; color: var(--white); background: var(--magenta); font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.home-faq { background: var(--paper); }
.home-faq .faq-grid { grid-template-columns: minmax(300px,5fr) minmax(0,7fr); gap: clamp(50px,8vw,110px); }
.home-faq .display-heading { position: sticky; top: 120px; }
.home-faq .display-heading h2 { max-width: 530px; }
.home-faq .display-heading .text-link { margin-top: 30px; }

.home-closing { min-height: 640px; position: relative; overflow: hidden; display: flex; align-items: center; }
.home-closing::before { width: 620px; height: 620px; position: absolute; right: -190px; top: -190px; border-radius: 50%; background: rgba(226,29,120,.1); content: ""; filter: blur(60px); }
.home-closing-mark { position: absolute; right: -2vw; bottom: -14vw; color: rgba(255,255,255,.025); font-size: min(50vw, 720px); font-weight: 950; line-height: .8; letter-spacing: -.14em; }
.home-closing-inner { min-height: 440px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 58px; }
.home-closing-inner > div { max-width: 940px; }
.home-closing h2 { font-size: clamp(48px,5.8vw,84px); }
.home-closing h2 span { display: block; }
.closing-proof { margin: 30px 0 0; color: rgba(255,255,255,.52); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.home-closing .button { flex: 0 0 auto; }

@keyframes homeGlow { from { transform: scale(.9); opacity: .65; } to { transform: scale(1.1); opacity: 1; } }

/* Planos — visual reference for the system */
.plans-intro { padding-block: 82px 58px; background: var(--white); }
.plans-intro-grid { display: grid; grid-template-columns: minmax(260px,4fr) minmax(0,8fr); gap: 48px; align-items: end; }
.plans-intro h1 { font-size: clamp(60px,6.5vw,94px); }
.plans-intro-copy { display: flex; justify-content: flex-end; }
.plans-intro-copy p { max-width: 680px; margin: 0; padding-left: 30px; border-left: 1px solid var(--ink); color: var(--muted); font-size: 16px; line-height: 1.65; }
.pricing-section { padding-top: 56px; background: var(--paper); }
.pricing-stack { display: grid; gap: 60px; }
.pricing-mode-bar > .section-kicker { text-align: center; }
.plans-mode-nav { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); color: var(--white); background: var(--ink); }
.plans-mode-nav > a { min-height: 108px; padding: 23px 28px; display: grid; grid-template-columns: 32px minmax(0,1fr) auto; gap: 14px; align-items: center; border-right: 1px solid var(--line-light); transition: background 180ms ease; }
.plans-mode-nav > a:last-child { border-right: 0; }
.plans-mode-nav > a:hover, .plans-mode-nav > a:focus-visible { background: #1a1a1a; outline: none; }
.plans-mode-nav > a > span { color: var(--magenta); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.plans-mode-nav strong { display: block; font-size: clamp(23px,2.3vw,34px); line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.plans-mode-nav > a:last-child strong { white-space: nowrap; font-size: clamp(17px,1.85vw,27px); }
.plans-mode-nav small { display: block; margin-top: 6px; color: rgba(255,255,255,.57); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.plans-mode-nav b { color: var(--magenta); font-size: 21px; transform: rotate(-45deg); }
.pricing-groups { display: grid; gap: 78px; }
.pricing-group { scroll-margin-top: 28px; }
.pricing-group-heading { margin-bottom: 18px; padding-bottom: 16px; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid var(--ink); }
.pricing-group-heading p { margin: 0; color: var(--magenta); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.pricing-group-heading h3 { margin: 0; font-size: clamp(42px,4.4vw,62px); line-height: .9; letter-spacing: -.065em; text-transform: uppercase; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; align-items: stretch; }
.price-card { min-width: 0; min-height: 540px; position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); }
.price-card-featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.price-tag { position: absolute; top: -1px; left: 50%; padding: 7px 15px; background: var(--magenta); color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .1em; transform: translateX(-50%); }
.price-card-content { min-height: 466px; padding: 36px 28px 24px; display: flex; flex-direction: column; }
.price-card-top { text-align: center; }
.price-card-top h4 { margin: 0; font-size: clamp(25px,2.4vw,36px); font-weight: 450; letter-spacing: -.05em; text-transform: uppercase; }
.price-card-top p { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.price-card-featured .price-card-top p { color: rgba(255,255,255,.58); }
.price-value { margin-top: 42px; display: flex; align-items: flex-end; justify-content: center; line-height: .75; }
.price-value > span { margin: 0 5px 4px 0; font-size: 10px; font-weight: 900; }
.price-value > small { margin: 0 6px 4px 0; font-size: 11px; font-weight: 900; }
.price-value strong { font-family: var(--display); font-size: clamp(59px,6vw,84px); letter-spacing: -.075em; }
.price-value sup { align-self: flex-start; margin: -3px 0 0 3px; font-size: 12px; font-weight: 900; }
.price-payment { margin: 18px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.price-card-featured .price-payment { color: rgba(255,255,255,.57); }
.price-consultations { max-width: 220px; margin: 28px auto 0; font-size: 10px; font-weight: 850; line-height: 1.45; text-align: center; text-transform: uppercase; }
.price-includes { margin: 26px 0 0; padding: 16px 0 0; display: grid; gap: 8px; border-top: 1px solid rgba(7,7,7,.12); list-style: none; }
.price-includes li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.price-includes li::before { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--magenta); content: ""; }
.price-card-featured .price-includes { border-color: rgba(255,255,255,.16); }
.price-card-featured .price-includes li { color: rgba(255,255,255,.64); }
.bank-slip-benefit { margin-top: auto; padding: 14px; display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; color: var(--white); background: var(--magenta); }
.bank-slip-benefit i { width: 19px; height: 25px; border: 2px solid currentColor; }
.bank-slip-benefit strong, .bank-slip-benefit small { display: block; }
.bank-slip-benefit strong { font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.bank-slip-benefit small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 7px; }
.payment-chooser { margin-top: auto; border-top: 1px solid var(--line); }
.price-card-featured .payment-chooser { border-color: var(--line-light); }
.payment-chooser summary { min-height: 64px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--magenta); font-size: 8px; font-weight: 900; letter-spacing: .11em; list-style: none; text-transform: uppercase; }
.payment-chooser summary::-webkit-details-marker { display: none; }
.payment-chooser summary span { font-size: 18px; transition: transform 180ms ease; }
.payment-chooser[open] summary span { transform: rotate(45deg); }
.payment-panel { padding: 0 20px 20px; display: grid; gap: 8px; }
.payment-panel > p { margin: 0 0 4px; color: var(--muted); font-size: 10px; }
.payment-button { min-height: 54px; padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; text-align: left; }
.payment-button:disabled { cursor: not-allowed; opacity: .45; }
.payment-button-label { display: flex; align-items: center; gap: 9px; }
.payment-button strong { font-size: 9px; text-transform: uppercase; }
.payment-button small { margin: 4px 0 0 25px; color: var(--muted); font-size: 8px; }
.price-card-featured .payment-button small { color: rgba(255,255,255,.58); }
.payment-icon { width: 16px; height: 16px; display: inline-block; border: 1px solid currentColor; }
.payment-icon-pix { transform: rotate(45deg) scale(.75); }
.payment-icon-bank-slip { height: 19px; }

.included-section { background: var(--white); }
.included-heading h2 { max-width: 700px; }
.included-list { margin-top: 56px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.included-list article { min-height: 270px; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transition: color 180ms ease, background 180ms ease; }
.included-list article:hover { color: var(--white); background: var(--ink); }
.included-list article > span { color: var(--magenta); font-size: 9px; font-weight: 900; }
.included-icon { width: 34px; height: 34px; margin-top: 28px; position: relative; display: block; color: var(--magenta); }
.included-icon::before, .included-icon::after { position: absolute; content: ""; }
.included-icon-01::before { width: 32px; height: 6px; left: 1px; top: 14px; background: currentColor; }
.included-icon-01::after { width: 6px; height: 22px; left: 6px; top: 6px; border-left: 3px solid currentColor; border-right: 13px double currentColor; }
.included-icon-02 { border: 2px solid currentColor; border-radius: 50%; }
.included-icon-02::before { inset: 6px; border: 1px solid currentColor; border-radius: 50%; }
.included-icon-03 { border: 2px solid currentColor; border-radius: 50%; }
.included-icon-03::before { width: 4px; height: 4px; left: 8px; top: 8px; border-radius: 50%; background: currentColor; }
.included-icon-03::after { width: 13px; height: 2px; right: 5px; bottom: 7px; background: currentColor; transform: rotate(-40deg); }
.included-icon-04 { width: 22px; margin-left: 6px; border: 2px solid currentColor; border-radius: 3px; }
.included-icon-04::after { width: 7px; height: 2px; left: 5px; bottom: 3px; background: currentColor; }
.included-icon-05::before { width: 10px; height: 10px; left: 4px; top: 3px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 16px 0 0 -2px var(--white), 16px 0 0 0 currentColor; }
.included-icon-05::after { width: 32px; height: 15px; left: 0; bottom: 1px; border: 2px solid currentColor; border-radius: 18px 18px 3px 3px; }
.included-list h3 { margin: auto 0 13px; font-size: clamp(21px,1.8vw,28px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; }
.included-list article:nth-child(3) h3 { white-space: nowrap; font-size: clamp(18px,1.45vw,22px); letter-spacing: -.06em; }
.included-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.included-list article:hover p { color: rgba(255,255,255,.64); }
.process-section { background: #e7e7e3; }
.process-grid, .faq-grid { display: grid; grid-template-columns: minmax(0,4fr) minmax(0,8fr); gap: 54px; align-items: start; }
.process-grid h2, .faq-grid h2 { max-width: 520px; font-size: clamp(43px,4.7vw,68px); }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); list-style: none; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.process-list li { min-height: 180px; padding: 24px; display: grid; grid-template-columns: 45px 1fr; gap: 16px; align-items: end; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-list li:nth-child(2), .process-list li:nth-child(3) { color: var(--white); background: var(--ink); }
.process-list li:last-child { background: var(--magenta); }
.process-list li > span { align-self: start; color: var(--magenta); font-family: var(--display); font-size: 48px; line-height: .8; opacity: .17; }
.process-list li:last-child > span { color: var(--white); }
.process-list strong { font-size: 20px; text-transform: uppercase; }
.process-list p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.process-list li:nth-child(2) p, .process-list li:nth-child(3) p, .process-list li:last-child p { color: rgba(255,255,255,.65); }
.faq-section { background: var(--white); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 15px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus-visible { border-radius: 4px; outline: 2px solid var(--magenta); outline-offset: 4px; }
.faq-list summary span { color: var(--magenta); font-size: 26px; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 730px; margin: -2px 50px 28px 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Resultados */
.page-hero { background: var(--white); }
.results-page-hero { padding-block: 100px 112px; }
.results-hero-layout { display: grid; grid-template-columns: minmax(0,9fr) minmax(250px,3fr); gap: 48px; align-items: end; }
.results-page-hero h1 { max-width: 980px; }
.results-mini-stat { padding: 0 0 8px 26px; border-left: 1px solid var(--ink); }
.results-mini-stat strong, .results-mini-stat span { display: block; }
.results-mini-stat strong { color: var(--magenta); font-family: var(--display); font-size: clamp(58px,6vw,84px); line-height: .8; letter-spacing: -.08em; }
.results-mini-stat span { margin-top: 16px; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.transformation-gallery-section { background: var(--paper); }
.transformation-gallery-heading { display: grid; grid-template-columns: minmax(0,8fr) minmax(280px,4fr); gap: 58px; align-items: end; }
.transformation-gallery-heading h2 { max-width: 890px; font-size: clamp(46px,5.3vw,76px); }
.transformation-gallery-heading h2 span { display: block; }
.transformation-gallery-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.results-gallery { margin-top: 56px; }
.results-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.result-comparison-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7,7,7,.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7,7,7,.07);
}
.result-comparison-card[hidden] { display: none; }
.result-comparison-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  background: #0a0a0b;
  cursor: zoom-in;
}
.result-gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}
.result-comparison-visual:hover .result-gallery-image,
.result-comparison-visual:focus-visible .result-gallery-image { transform: scale(1.018); }
.result-comparison-visual:focus-visible { outline: 3px solid var(--magenta); outline-offset: -3px; }
.result-gallery-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7,7,7,.82);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}
.result-comparison-card figcaption {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 3px solid var(--magenta);
}
.result-comparison-card figcaption span {
  color: var(--magenta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.result-comparison-card figcaption strong {
  color: rgba(7,7,7,.42);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .04em;
}
body.results-lightbox-open { overflow: hidden; }
.result-lightbox {
  padding: clamp(20px, 4vw, 52px);
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: clamp(10px, 2vw, 28px);
  align-items: center;
  background: rgba(4,4,5,.94);
  backdrop-filter: blur(12px);
}
.result-lightbox[hidden] { display: none; }
.result-lightbox figure { max-width: min(720px, 100%); max-height: 92vh; margin: 0 auto; display: grid; justify-items: center; }
.result-lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: 84vh; display: block; border-radius: 16px; object-fit: contain; }
.result-lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.result-lightbox-close,
.result-lightbox-nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(16,16,18,.78);
  cursor: pointer;
}
.result-lightbox-close:hover,
.result-lightbox-close:focus-visible,
.result-lightbox-nav:hover,
.result-lightbox-nav:focus-visible { border-color: var(--magenta); background: var(--magenta); outline: none; }
.result-lightbox-close { position: absolute; top: 22px; right: 22px; font-size: 28px; }
.result-lightbox-nav { font-size: 20px; }
.result-lightbox-prev { grid-column: 1; }
.result-lightbox figure { grid-column: 2; }
.result-lightbox-next { grid-column: 3; }
.results-load-more {
  min-width: 240px;
  min-height: 58px;
  margin: 36px auto 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.results-load-more span { color: #ff5da8; }
.results-load-more:hover,
.results-load-more:focus-visible { background: var(--magenta); outline: none; }
.results-load-more:hover span,
.results-load-more:focus-visible span { color: var(--white); }
.transformation-gallery-empty { margin-top: 56px; padding: 18px; display: grid; grid-template-columns: minmax(0,7fr) minmax(300px,5fr); gap: 18px; border: 1px solid rgba(7,7,7,.08); border-radius: 30px; background: rgba(255,255,255,.72); box-shadow: 0 22px 54px rgba(7,7,7,.035); }
.transformation-preview { min-height: 520px; padding: 18px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; overflow: hidden; border-radius: 20px; background: var(--ink); }
.transformation-preview-panel { padding: 23px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; color: rgba(255,255,255,.68); background: linear-gradient(145deg,#19191b,#101012); }
.transformation-preview-panel::before { width: 260px; height: 260px; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; transform: translate(-50%,-50%); }
.transformation-preview-after::before { border-color: rgba(226,29,120,.25); box-shadow: 0 0 65px rgba(226,29,120,.11); }
.transformation-preview-panel > span { position: relative; z-index: 1; color: var(--magenta); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.transformation-preview-panel > i { width: 70px; height: 92px; position: relative; z-index: 1; align-self: center; border: 1px solid rgba(255,255,255,.18); border-radius: 44px 44px 18px 18px; }
.transformation-preview-panel > i::before { width: 32px; height: 32px; position: absolute; left: 18px; top: -40px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.transformation-preview-panel > small { position: relative; z-index: 1; font-size: 7px; font-style: normal; font-weight: 850; letter-spacing: .12em; }
.transformation-empty-copy { padding: clamp(30px,4vw,54px); display: flex; flex-direction: column; justify-content: center; }
.transformation-empty-copy h3 { max-width: 500px; margin: 0; font-size: clamp(31px,3.1vw,46px); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.transformation-empty-copy > p:not(.section-kicker) { max-width: 520px; margin: 23px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.transformation-criteria { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.transformation-criteria span { min-height: 38px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid rgba(7,7,7,.11); border-radius: 999px; background: var(--white); font-size: 8px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.results-reviews { background: var(--white); }
.results-reviews-heading { margin-bottom: 50px; }
.results-reviews-heading h2 { max-width: 900px; font-size: clamp(46px,5.3vw,76px); }
.results-reviews-heading h2 span { display: block; }
.results-reviews .review-carousel { width: 100%; margin-inline: auto; background: var(--paper); }
.proof-context { min-height: 500px; display: flex; align-items: center; }
.proof-context-grid { display: grid; grid-template-columns: minmax(0,8fr) minmax(280px,4fr); gap: 58px; align-items: end; }
.proof-context h2 { max-width: 940px; font-size: clamp(45px,5.6vw,80px); }
.proof-context-grid > p { margin: 0; color: rgba(255,255,255,.67); font-size: 16px; line-height: 1.65; }

/* Pabulo */
.profile-hero { overflow: hidden; }
.profile-hero-grid { min-height: 700px; display: grid; grid-template-columns: minmax(0,7fr) minmax(420px,5fr); gap: 54px; align-items: center; }
.profile-hero-copy { padding-block: 84px; }
.profile-hero-copy h1 { max-width: 790px; }
.profile-hero-copy > p:not(.section-kicker) { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.6; }
.profile-hero-image { height: 620px; position: relative; align-self: end; }
.profile-hero-image::before { position: absolute; inset: 36px -30px 0 24px; background: #151515; content: ""; }
.profile-hero-image img { width: 100%; height: 100%; position: relative; z-index: 1; object-fit: cover; object-position: 50% 22%; }
.profile-badge { position: absolute; z-index: 2; right: -1px; top: 74px; padding: 15px 18px; background: var(--magenta); color: var(--white); }
.profile-badge span, .profile-badge strong { display: block; }
.profile-badge span { font-size: 8px; letter-spacing: .14em; }
.profile-badge strong { margin-top: 5px; font-size: 12px; }
.profile-facts { background: var(--white); border-bottom: 1px solid var(--line); }
.profile-facts-grid { display: grid; grid-template-columns: 2fr 6fr 4fr; }
.profile-facts article { min-height: 112px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.profile-facts article:last-child { border-right: 0; }
.profile-facts strong { font-size: 22px; letter-spacing: -.035em; }
.profile-facts article:first-child strong, .profile-facts article:last-child strong { color: var(--magenta); font-family: var(--display); font-size: 34px; }
.profile-facts span { margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.integrated-section { background: var(--white); }
.profile-foundations-heading h2 { max-width: 850px; }
.profile-foundations-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.profile-foundations-grid article { min-height: 280px; padding: 26px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.profile-foundations-grid > article > span { color: var(--magenta); font-size: 10px; font-weight: 900; }
.profile-foundations-grid h3 { margin: auto 0 13px; font-size: 27px; letter-spacing: -.05em; text-transform: uppercase; }
.profile-foundations-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.profile-story { background: var(--paper); }
.profile-story-grid { display: grid; grid-template-columns: minmax(400px,6fr) minmax(0,6fr); gap: 70px; align-items: center; }
.profile-story figure { height: 660px; position: relative; overflow: hidden; }
.profile-story figure::before { width: 8px; position: absolute; z-index: 2; inset: 0 auto 0 0; background: var(--magenta); content: ""; }
.profile-story figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.profile-story h2 { font-size: clamp(45px,5vw,72px); }
.profile-story .display-heading > p:not(.section-kicker) { margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.profile-manifesto-centered { min-height: 440px; display: flex; flex-direction: column; justify-content: center; }
.profile-manifesto blockquote { max-width: 1070px; margin: 0; font-family: var(--display); font-size: clamp(43px,5.3vw,76px); line-height: .96; letter-spacing: -.06em; }
.profile-manifesto blockquote span { display: block; }
.profile-manifesto blockquote span:last-child { color: var(--magenta); }
.profile-manifesto p { max-width: 770px; margin: 25px 0 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; }
.profile-instagram { background: var(--white); }
.profile-instagram-grid { display: grid; grid-template-columns: minmax(0,9fr) minmax(220px,3fr); gap: 50px; align-items: end; }
.profile-instagram h2 { max-width: 940px; }
.profile-instagram .outline-link { justify-self: end; }

/* TIME */
.community-hero { padding-top: 94px; overflow: hidden; background: var(--white); }
.community-hero-copy h1 { max-width: 1100px; }
.community-hero-copy > p:last-child { max-width: 690px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.community-cover { width: min(calc(100% - (var(--gutter) * 2)), var(--shell)); height: min(58vw,700px); min-height: 520px; margin: 62px auto 0; position: relative; overflow: hidden; }
.community-cover::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); content: ""; }
.community-cover img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.community-event-section { padding-block: var(--section-space); }
.community-event-section:not(.section-dark) { background: var(--paper); }
.community-section-head { display: grid; grid-template-columns: minmax(0,8fr) minmax(280px,4fr); gap: 48px; align-items: end; }
.community-section-head .section-kicker { grid-column: 1 / -1; margin-bottom: -10px; }
.community-section-head h2 { max-width: 900px; font-size: clamp(44px,5.2vw,74px); }
.community-section-head > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.section-dark .community-section-head > p:last-child { color: rgba(255,255,255,.65); }
.story-gallery { margin-top: 58px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-rows: 270px; gap: 12px; }
.story-gallery figure { position: relative; overflow: hidden; background: #171717; }
.story-gallery-featured { grid-column: span 2; grid-row: span 2; }
.story-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: transform 420ms ease; }
.story-gallery figure:hover img { transform: scale(1.025); }
.story-gallery figure::after { position: absolute; inset: 45% 0 0; background: linear-gradient(180deg,transparent,rgba(0,0,0,.72)); content: ""; }
.story-gallery figcaption { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 15px; color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.community-intro { background: var(--white); }
.community-intro-grid { display: grid; grid-template-columns: minmax(0,3fr) minmax(0,6fr) minmax(260px,3fr); gap: 44px; align-items: start; }
.community-intro-grid .section-kicker { margin-top: 8px; }
.community-intro-grid h2 { font-size: clamp(45px,5vw,72px); }
.community-intro-grid > p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* Avance */
.avance-hero { padding-top: 78px; background: var(--white); }
.page-title-centered { max-width: 1050px; padding-bottom: 66px; text-align: center; }
.avance-brand-intro, .avance-logo-badge { display: block; background-image: url('/assets/avance-logo-completa.png'); background-repeat: no-repeat; background-position: center; background-size: contain; }
.avance-brand-intro { width: 320px; height: 92px; margin: 0 auto 30px; }
.avance-hero h1 { font-size: clamp(50px,6vw,86px); }
.avance-hero h1 span { display: block; }
.avance-hero-copy > p:last-child { max-width: 700px; margin: 24px auto 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.avance-hero-dark { padding-block: 58px; background: var(--ink); }
.avance-hero-photo { height: min(63vw,750px); min-height: 560px; position: relative; overflow: hidden; }
.avance-hero-photo::before { width: 8px; position: absolute; z-index: 2; inset: 0 auto 0 0; background: var(--magenta); content: ""; }
.avance-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; }
.avance-hero-photo figcaption { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.avance-hero-photo figcaption > span { color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.avance-logo-badge-short { width: 130px; height: 38px; background-color: var(--white); }
.avance-photo-logo { width: 220px; height: auto; display: block; padding: 7px 10px; border-radius: 7px; background: var(--white); object-fit: contain; }
.avance-benefit { color: var(--white); background: var(--magenta); }
.avance-benefit-grid { min-height: 190px; display: grid; grid-template-columns: minmax(220px,3fr) minmax(0,9fr); gap: 44px; align-items: center; }
.avance-benefit-grid > strong { font-family: var(--display); font-size: clamp(86px,10vw,148px); line-height: .8; letter-spacing: -.09em; }
.avance-benefit .section-kicker { color: var(--white); }
.avance-benefit h2 { max-width: 900px; font-size: clamp(38px,4.6vw,66px); }
.avance-benefit h2 span { display: block; color: var(--white); }
.avance-experience { background: var(--white); }
.avance-experience-heading h2 { max-width: 900px; }
.avance-experience-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 280px 250px; gap: 14px; position: relative; }
.avance-experience-grid figure { position: relative; overflow: hidden; background: var(--ink); }
.avance-experience-grid figure:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.avance-experience-grid figure:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.avance-experience-grid figure:nth-child(3) { grid-column: 8 / 11; grid-row: 2; }
.avance-experience-grid figure:nth-child(4) { grid-column: 11 / 13; grid-row: 2; }
.avance-experience-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.avance-experience-grid figure:hover img { transform: scale(1.025); }
.avance-experience-grid figure::after { position: absolute; inset: 55% 0 0; background: linear-gradient(180deg,transparent,rgba(0,0,0,.72)); content: ""; }
.avance-experience-grid figcaption { position: absolute; z-index: 1; left: 14px; bottom: 13px; color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.avance-collage-mark { position: absolute; z-index: 3; right: 16px; bottom: 16px; }
.avance-services { background: var(--paper); }
.editorial-three-line { line-height: .88; }
.editorial-three-line > span { display: block; }
.editorial-three-line > .editorial-base-line { color: inherit; }
.avance-services .split-heading h2 { font-size: clamp(42px,4.4vw,66px); }
.avance-services-list { margin-top: 58px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.avance-service { min-height: 300px; padding: 28px; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 20px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.avance-service > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--magenta); border-radius: 50%; color: var(--magenta); font-size: 9px; font-weight: 900; }
.avance-service h3 { margin: 0; font-size: clamp(24px,2.4vw,36px); line-height: 1; letter-spacing: -.05em; text-transform: uppercase; }
.avance-service p { max-width: 510px; margin: 30px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.avance-service ul { margin: 25px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.avance-service li { min-height: 36px; padding: 9px 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.avance-service li::before { width: 5px; height: 5px; margin-right: 10px; background: var(--magenta); content: ""; }
.avance-location { padding-block: 104px; }
.avance-location-grid { display: grid; grid-template-columns: minmax(0,4.4fr) minmax(520px,7.6fr); gap: clamp(52px,6vw,88px); align-items: center; }
.avance-location-grid > div:first-child { min-width: 0; align-self: center; }
.avance-location h2 { max-width: 520px; font-size: clamp(40px,3.75vw,58px); line-height: .93; }
.avance-location h2 span { display: block; color: var(--magenta); }
.avance-location > .shell > div:first-child > p:not(.section-kicker) { margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.65; }
.avance-location .button { margin-top: 32px; }
.avance-map { min-height: 470px; border: 10px solid var(--white); background: #1a1a1a; }
.avance-map iframe { width: 100%; height: 470px; display: block; border: 0; filter: grayscale(.35) contrast(1.03); }
.avance-page .page-cta { min-height: 640px; color: var(--ink); background: #f1f0ec; }
.avance-page .page-cta-mark { right: -2vw; bottom: -12vw; color: rgba(226,29,120,.075); }
.avance-page .page-cta-inner { padding-block: 108px; }
.avance-page .page-cta .section-kicker { color: var(--magenta); }
.avance-page .page-cta h2 { max-width: 1180px; font-size: clamp(56px,5.8vw,86px); }
.avance-page .page-cta-title { color: var(--ink); }
.avance-page .page-cta-highlight { color: var(--magenta); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 176px 1fr auto; }
  .main-nav { display: none; }
  .mobile-nav { display: block; }
  .site-header .header-cta { display: none; }
  .home-hero-grid, .profile-hero-grid { grid-template-columns: minmax(0,7fr) minmax(360px,5fr); gap: 34px; }
  .home-hero-image { height: 530px; }
  .pillars-grid, .included-list { grid-template-columns: repeat(3,1fr); }
  .pillars-grid article:nth-last-child(-n+2), .included-list article:nth-last-child(-n+2) { min-height: 230px; }
  .app-section-grid { grid-template-columns: 1fr 390px; gap: 34px; }
  .app-phone { width: 225px; height: 465px; }
  .pabulo-section-grid, .profile-story-grid { gap: 45px; }
  .split-heading, .community-intro-grid { grid-template-columns: 1fr 2fr; }
  .split-heading > .section-intro, .community-intro-grid > p:last-child { grid-column: 2; }
  .story-gallery { grid-template-columns: repeat(3,1fr); }
  .avance-experience-grid { grid-template-rows: 250px 230px; }
}

@media (max-width: 820px) {
  :root { --gutter: 22px; --section-space: 82px; }
  h1 { font-size: clamp(48px,11vw,76px); }
  h2 { font-size: clamp(42px,9vw,66px); }
  .site-header { min-height: 78px; grid-template-columns: 1fr auto; }
  .brand-official { width: 145px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .brand-footer, .footer-links { justify-self: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .home-hero-grid, .profile-hero-grid { min-height: auto; display: block; }
  .home-hero-copy { padding-block: 62px 50px; }
  .home-hero-image { height: min(110vw,650px); }
  .home-proof-strip { grid-template-columns: 1fr; }
  .home-proof-strip > div { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .evolution-heading, .community-section-head { grid-template-columns: 1fr; }
  .evolution-heading .section-kicker, .community-section-head .section-kicker { grid-column: auto; margin-bottom: 0; }
  .pillars-grid, .included-list { grid-template-columns: repeat(2,1fr); }
  .app-section-grid { grid-template-columns: 1fr; }
  .app-phone-stage { min-height: 580px; }
  .results-review-layout, .pabulo-section-grid, .clinic-teaser-grid, .profile-story-grid,
  .plans-intro-grid, .results-hero-layout, .proof-context-grid, .avance-location-grid { grid-template-columns: 1fr; }
  .transformation-gallery-heading, .transformation-gallery-empty { grid-template-columns: 1fr; }
  .transformation-gallery-heading { gap: 26px; }
  .results-gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .results-proof-minimal { min-height: 230px; }
  .pabulo-portrait, .profile-story figure { height: min(120vw,650px); }
  .clinic-teaser-grid > img { min-height: 420px; }
  .time-teaser-gallery { grid-template-columns: 1fr; }
  .time-teaser-gallery figure { height: min(105vw,540px); }
  .home-closing-inner { min-height: 440px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .split-heading, .community-intro-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; }
  .split-heading > .section-intro, .community-intro-grid > p:last-child { grid-column: auto; }
  .plans-intro-copy { justify-content: flex-start; }
  .plans-intro-copy p { max-width: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 500px; }
  .profile-hero-copy { padding-block: 64px 44px; }
  .profile-hero-image { height: min(118vw,650px); }
  .profile-facts-grid { grid-template-columns: 1fr; }
  .profile-facts article { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-foundations-grid { grid-template-columns: repeat(2,1fr); }
  .profile-instagram-grid { grid-template-columns: 1fr; }
  .profile-instagram .outline-link { justify-self: start; }
  .community-cover { height: min(100vw,650px); min-height: 430px; }
  .story-gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 240px; }
  .avance-benefit-grid { grid-template-columns: 1fr; padding-block: 45px; }
  .avance-experience-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,250px); }
  .avance-experience-grid figure:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .avance-experience-grid figure:nth-child(2), .avance-experience-grid figure:nth-child(3), .avance-experience-grid figure:nth-child(4) { grid-column: auto; grid-row: auto; }
  .avance-services-list { grid-template-columns: 1fr; }
  .avance-location-grid { gap: 46px; }
}

@media (max-width: 520px) {
  :root { --gutter: 17px; --section-space: 68px; }
  .section-kicker { margin-bottom: 16px; }
  h1 { font-size: clamp(44px,13.5vw,66px); }
  h2 { font-size: clamp(39px,12vw,58px); }
  .site-header { min-height: 72px; }
  .brand-official { width: 132px; height: 48px; }
  .brand-official img { width: 145px; top: -18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .text-link { justify-content: center; }
  .home-hero-copy h1 { font-size: clamp(44px,13.5vw,66px); }
  .home-hero-image { height: 520px; }
  .pillars-grid, .included-list, .profile-foundations-grid { grid-template-columns: 1fr; }
  .pillars-grid article, .included-list article, .profile-foundations-grid article { min-height: 230px; }
  .app-feature-grid { grid-template-columns: 1fr; }
  .app-phone-stage { min-height: 500px; }
  .app-phone-stage::before { width: 360px; height: 360px; }
  .app-phone { width: 185px; height: 382px; border-radius: 34px; }
  .app-phone img { border-radius: 27px; }
  .app-phone-back { left: 0; top: 18%; }
  .app-phone-front { right: 0; }
  .review-carousel { min-height: 500px; padding: 24px; }
  .review-carousel-head, .review-carousel-controls, .review-carousel-links { align-items: flex-start; flex-direction: column; }
  .review-carousel-links { gap: 15px; }
  .pabulo-portrait, .profile-story figure { height: 500px; }
  .pabulo-facts { grid-template-columns: 1fr; }
  .inline-actions { flex-direction: column; align-items: flex-start; }
  .clinic-teaser-grid > div { padding: 44px 24px; }
  .home-closing h2 { font-size: 42px; }
  .plans-intro { padding-block: 58px 44px; }
  .plans-intro-copy p { padding: 0; border-left: 0; }
  .plans-mode-nav { grid-template-columns: 1fr; }
  .plans-mode-nav > a { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .plans-mode-nav > a:last-child { border-bottom: 0; }
  .price-card-content { padding-inline: 22px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 150px; }
  .results-mini-stat { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--ink); }
  .transformation-gallery-empty { margin-top: 38px; padding: 10px; border-radius: 22px; }
  .results-gallery { margin-top: 38px; }
  .results-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-comparison-card { border-radius: 20px; }
  .transformation-preview { min-height: 410px; padding: 10px; }
  .transformation-preview-panel { padding: 16px; }
  .transformation-empty-copy { padding: 28px 14px 32px; }
  .results-reviews-heading { margin-bottom: 34px; }
  .proof-context { min-height: auto; }
  .profile-hero-image { height: 520px; }
  .profile-story-grid { gap: 38px; }
  .story-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .story-gallery-featured { grid-column: auto; grid-row: span 1; }
  .community-cover { min-height: 390px; }
  .avance-hero { padding-top: 58px; }
  .avance-brand-intro { width: 170px; }
  .avance-hero-photo { min-height: 450px; }
  .avance-benefit-grid > strong { font-size: 92px; }
  .avance-experience-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4,280px); }
  .avance-experience-grid figure:nth-child(n) { grid-column: auto; grid-row: auto; }
  .avance-collage-mark { right: 12px; bottom: 12px; }
  .avance-service { grid-template-columns: 34px 1fr; gap: 13px; padding: 22px 18px; }
  .avance-map, .avance-map iframe { min-height: 390px; height: 390px; }
  .footer-links { gap: 16px; }
}

@media (max-width: 1080px) {
  .home-hero-grid { grid-template-columns: minmax(0, 7fr) minmax(350px, 5fr); gap: 28px; }
  .home-hero-copy h1 { font-size: clamp(54px, 6.7vw, 78px); }
  .home-hero-visual { min-height: 610px; }
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars-grid article, .pillars-grid article:nth-last-child(-n+2) { grid-column: span 1; min-height: 240px; }
  .pillars-grid article:last-child { grid-column: 1 / -1; min-height: 210px; }
  .app-section-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; padding-inline: 54px; }
  .app-phone { width: 220px; height: 454px; }
  .time-teaser-gallery { grid-auto-rows: 440px; }
}

@media (max-width: 820px) {
  .site-header-home { min-height: 72px; }
  .home-page section[id] { scroll-margin-top: 76px; }
  .home-hero-grid { min-height: auto; display: block; }
  .home-hero-copy { max-width: 690px; padding-block: 62px 48px; }
  .home-hero-copy h1 { font-size: clamp(50px, 10.5vw, 75px); }
  .home-hero-visual { min-height: 600px; }
  .home-hero-visual > img { width: 88%; right: -2%; }
  .home-section-heading, .time-teaser-heading { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .home-section-heading .section-kicker, .time-teaser-heading .section-kicker { grid-column: auto; margin-bottom: -4px; }
  .home-section-heading > p:last-child, .time-teaser-heading > p:last-child { max-width: 600px; }
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars-grid article:last-child { grid-column: 1 / -1; }
  .app-section-card { border-radius: 30px; }
  .app-section-grid { min-height: auto; grid-template-columns: 1fr; padding: 58px 38px 34px; }
  .app-copy h2 { font-size: clamp(44px, 8.6vw, 66px); }
  .app-phone-stage { min-height: 560px; }
  .app-phone { width: 235px; height: 485px; }
  .results-review-layout { grid-template-columns: 1fr; }
  .results-proof-minimal { min-height: 300px; }
  .pabulo-section-grid { grid-template-columns: 1fr; gap: 48px; }
  .pabulo-portrait { height: min(118vw, 650px); }
  .time-teaser-gallery { margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(78vw, 480px); grid-auto-rows: 470px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .time-teaser-gallery::-webkit-scrollbar { display: none; }
  .time-teaser-gallery figure, .time-teaser-gallery .time-gallery-featured { grid-column: auto; scroll-snap-align: start; }
  .home-faq .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-faq .display-heading { position: static; }
  .home-closing-inner { min-height: 440px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (max-width: 520px) {
  .home-hero-copy { padding-block: 48px 38px; }
  .home-hero-copy h1 { font-size: clamp(45px, 13.2vw, 62px); }
  .home-hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { margin-top: 28px; flex-direction: column; align-items: stretch; gap: 15px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof { margin-top: 31px; }
  .home-hero-visual { min-height: 485px; border-radius: 26px 26px 0 0; }
  .home-hero-visual > img { width: 108%; height: 100%; right: -16%; }
  .hero-lettermark { right: -8%; top: 12%; font-size: 330px; }
  .hero-halo { width: 360px; height: 360px; }
  .hero-visual-note { left: 16px; bottom: 16px; max-width: 170px; padding: 13px 14px; }
  .home-section-heading h2, .time-teaser-heading h2 { font-size: clamp(40px, 11.5vw, 55px); }
  .results-heading h2 { font-size: clamp(36px, 10vw, 44px); }
  .pillars-grid { margin-top: 38px; grid-template-columns: 1fr; }
  .pillars-grid article, .pillars-grid article:nth-last-child(-n+2), .pillars-grid article:last-child { grid-column: auto; min-height: 215px; padding: 24px; }
  .app-section { padding-block: 50px; }
  .app-section-card { width: calc(100% - 24px); border-radius: 26px; }
  .app-section-grid { padding: 44px 20px 24px; }
  .app-copy h2 { font-size: clamp(40px, 11.5vw, 54px); }
  .app-copy > p:not(.section-kicker) { font-size: 16px; }
  .app-feature-grid { display: grid; grid-template-columns: 1fr; }
  .app-feature-grid span { min-height: 40px; }
  .app-store-links { flex-wrap: wrap; }
  .app-phone-stage { min-height: 475px; }
  .app-phone-stage::before { width: 350px; height: 350px; }
  .app-phone { width: 182px; height: 375px; border-radius: 33px; }
  .app-phone img { border-radius: 27px; }
  .app-phone-back { left: 0; top: 18%; }
  .app-phone-front { right: 0; top: 3%; }
  .results-review-layout { margin-top: 38px; }
  .review-carousel { min-height: 510px; padding: 24px; }
  .review-carousel-body blockquote { font-size: 27px; }
  .results-proof-minimal { min-height: 280px; padding: 28px; }
  .pabulo-portrait { height: 500px; border-radius: 24px; }
  .pabulo-credentials { display: grid; grid-template-columns: 1fr; }
  .inline-actions { flex-direction: column; align-items: flex-start; }
  .time-teaser-gallery { grid-auto-columns: 84vw; grid-auto-rows: 430px; }
  .home-closing { min-height: 590px; }
  .home-closing-inner { min-height: 450px; gap: 36px; }
  .home-closing h2 { font-size: clamp(41px, 11.5vw, 54px); }
  .home-closing .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Cohesive premium system — all routes */
h1, h2 { text-wrap: balance; }
.inner-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(7,7,7,.08);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.inner-header .site-header { min-height: 78px; border-bottom: 0; }

.home-hero-grid { grid-template-columns: minmax(0,8.2fr) minmax(360px,3.8fr); gap: 34px; }
.home-hero-copy h1 { max-width: 890px; font-size: clamp(50px,3.9vw,58px); line-height: .94; }
.home-section-heading h2,
.results-heading h2,
.pabulo-copy h2,
.time-teaser-heading h2,
.home-closing h2 { font-size: clamp(46px,4.2vw,64px); line-height: .94; }
.app-section-grid { grid-template-columns: minmax(0,7fr) minmax(360px,5fr); }
.app-copy h2 { font-size: clamp(46px,4vw,60px); line-height: .94; }

.plans-mode-nav { overflow: hidden; border-radius: 24px; box-shadow: 0 20px 46px rgba(7,7,7,.08); }
.price-card { overflow: hidden; border-color: rgba(7,7,7,.1); border-radius: 24px; box-shadow: 0 18px 42px rgba(7,7,7,.035); }
.price-card-featured { border-color: var(--ink); box-shadow: 0 24px 54px rgba(7,7,7,.14); }
.price-tag { top: 0; border-radius: 0 0 10px 10px; }
.payment-button { border-radius: 12px; transition: border-color 180ms ease, background 180ms ease; }
.payment-button:hover, .payment-button:focus-visible { border-color: var(--magenta); background: rgba(226,29,120,.045); outline: none; }
.included-list { gap: 14px; border: 0; }
.included-list article { border: 1px solid rgba(7,7,7,.09); border-radius: 22px; background: var(--paper); }
.process-list { gap: 12px; border: 0; }
.process-list li { border: 0; border-radius: 20px; box-shadow: inset 0 0 0 1px rgba(7,7,7,.1); }

.results-page-hero h1 { max-width: 880px; font-size: clamp(56px,5.2vw,78px); }
.transformation-gallery-heading h2,
.results-reviews-heading h2,
.proof-context h2 { font-size: clamp(46px,4.5vw,68px); line-height: .94; }

.profile-hero-copy h1 { font-size: clamp(54px,5vw,74px); }
.profile-hero-image { overflow: hidden; border-radius: 30px 30px 0 0; }
.profile-hero-image::before { display: none; }
.profile-badge { right: 18px; top: 22px; border-radius: 12px; }
.profile-facts { padding-block: 14px; border-bottom: 0; background: var(--paper); }
.profile-facts-grid { gap: 12px; }
.profile-facts article { min-height: 104px; border: 1px solid rgba(7,7,7,.08); border-radius: 18px; background: var(--white); }
.profile-foundations-heading h2,
.profile-story h2,
.profile-instagram h2 { font-size: clamp(46px,4.5vw,68px); line-height: .94; }
.profile-foundations-grid { gap: 14px; border: 0; }
.profile-foundations-grid article { border: 1px solid rgba(7,7,7,.09); border-radius: 22px; background: var(--paper); }
.profile-story figure { border-radius: 28px; box-shadow: 0 24px 52px rgba(7,7,7,.07); }
.profile-manifesto blockquote { font-size: clamp(46px,4.7vw,70px); }

.community-hero-copy h1 { max-width: 1050px; font-size: clamp(56px,5.3vw,80px); }
.community-cover { border-radius: 30px; box-shadow: 0 26px 58px rgba(7,7,7,.08); }
.community-section-head h2,
.community-intro-grid h2 { font-size: clamp(46px,4.5vw,68px); line-height: .94; }
.story-gallery figure { border-radius: 22px; }

.avance-hero h1 { font-size: clamp(54px,5.2vw,78px); line-height: .94; }
.avance-hero-photo { border-radius: 30px; }
.avance-benefit h2,
.avance-experience-heading h2,
.avance-services .split-heading h2,
.avance-location h2 { font-size: clamp(44px,4.3vw,64px); line-height: .95; }
.avance-experience-grid figure { border-radius: 22px; }
.avance-services-list { gap: 14px; border: 0; }
.avance-service { border: 1px solid rgba(7,7,7,.09); border-radius: 22px; background: var(--white); }
.avance-map { overflow: hidden; border: 0; border-radius: 28px; box-shadow: 0 24px 54px rgba(0,0,0,.2); }

.page-cta h2 { font-size: clamp(46px,4.8vw,70px); line-height: .94; }

@media (min-width: 1180px) {
  .home-hero-copy h1,
  .app-copy h2,
  .home-section-heading h2,
  .pabulo-copy h2,
  .time-teaser-heading h2,
  .home-closing h2,
  .display-heading h1,
  .display-heading h2,
  .avance-location h2 { white-space: normal; }
}

@media (max-width: 1080px) {
  .home-hero-grid { grid-template-columns: minmax(0,7fr) minmax(340px,5fr); }
  .home-hero-copy h1 { font-size: clamp(46px,5.8vw,58px); }
  .app-section-grid { grid-template-columns: minmax(0,1fr) 360px; }
}

@media (max-width: 820px) {
  .inner-header .site-header { min-height: 72px; }
  .home-hero-grid { display: block; }
  .home-hero-copy h1 { font-size: clamp(42px,10vw,62px); }
  .home-section-heading h2,
  .results-heading h2,
  .pabulo-copy h2,
  .time-teaser-heading h2,
  .home-closing h2,
  .app-copy h2,
  .results-page-hero h1,
  .transformation-gallery-heading h2,
  .results-reviews-heading h2,
  .proof-context h2,
  .profile-hero-copy h1,
  .profile-foundations-heading h2,
  .profile-story h2,
  .profile-instagram h2,
  .community-hero-copy h1,
  .community-section-head h2,
  .community-intro-grid h2,
  .avance-hero h1,
  .avance-benefit h2,
  .avance-experience-heading h2,
  .avance-services .split-heading h2,
  .avance-location h2,
  .page-cta h2 { font-size: clamp(38px,9.5vw,56px); }
  .profile-facts-grid { gap: 8px; }
  .profile-facts article { border-right: 1px solid rgba(7,7,7,.08); }
  .profile-foundations-grid { gap: 10px; }
  .avance-services-list { gap: 10px; }
}

@media (max-width: 520px) {
  .home-hero-copy h1 { font-size: clamp(38px,10.5vw,48px); }
  .included-list article,
  .profile-foundations-grid article,
  .avance-service { border-radius: 18px; }
  .community-cover,
  .avance-hero-photo,
  .avance-map,
  .profile-story figure { border-radius: 22px; }
}

/* Final display-title pass: preserve the content grid and never crop a heading. */
.hero-title-mobile { display: none !important; }
.hero-title-line { display: block; }
.home-hero-copy h1 .hero-title-line-dark {
  margin-top: 0;
  color: var(--ink);
}

.home-hero-visual {
  isolation: isolate;
  background: #111;
}
.home-hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  inset: 0;
  object-fit: cover;
  object-position: 58% 48%;
  filter: saturate(.86) contrast(1.04);
}
.hero-photo-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(226,29,120,.22), transparent 36%),
    linear-gradient(135deg, rgba(226,29,120,.1), transparent 48%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.home-hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,.02) 32%, rgba(7,7,7,.63) 100%),
    linear-gradient(110deg, rgba(7,7,7,.16), transparent 48%);
  content: "";
  pointer-events: none;
}
.home-hero-visual::after {
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px 24px 0 0;
  content: "";
  pointer-events: none;
}
.hero-visual-note {
  z-index: 4;
  border-color: rgba(255,255,255,.18);
  background: rgba(7,7,7,.58);
  color: rgba(255,255,255,.7);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.hero-visual-note span { color: var(--white); }

.display-heading,
.home-section-heading,
.results-heading,
.time-teaser-heading,
.results-hero-layout,
.transformation-gallery-heading,
.results-reviews-heading,
.proof-context-grid,
.profile-hero-copy,
.profile-foundations-heading,
.profile-story .display-heading,
.profile-instagram-grid,
.community-hero-copy,
.community-section-head,
.community-intro-grid,
.avance-hero-copy,
.avance-benefit-grid,
.avance-experience-heading,
.avance-services .split-heading,
.avance-location,
.process-grid,
.faq-grid,
.included-heading,
.page-cta-inner {
  min-width: 0;
  overflow: visible;
}

.display-heading h1,
.display-heading h2,
.home-section-heading h2,
.results-heading h2,
.time-teaser-heading h2,
.app-copy h2,
.home-closing h2,
.results-page-hero h1,
.transformation-gallery-heading h2,
.results-reviews-heading h2,
.proof-context h2,
.profile-hero-copy h1,
.profile-foundations-heading h2,
.profile-story h2,
.profile-instagram h2,
.community-hero-copy h1,
.community-section-head h2,
.community-intro-grid h2,
.avance-hero h1,
.avance-benefit h2,
.avance-experience-heading h2,
.avance-services .split-heading h2,
.avance-location h2,
.process-grid h2,
.faq-grid h2,
.included-heading h2,
.page-cta h2 {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

@media (max-width: 820px) {
  .hero-title-line { display: none !important; }
  .home-hero-copy h1 .hero-title-mobile {
    display: block !important;
    margin: 0;
    color: inherit;
    font-size: clamp(30px, 10vw, 42px);
    line-height: .96;
  }
  .hero-title-mobile b,
  .hero-title-mobile em {
    display: block;
    font: inherit;
    font-weight: 950;
  }
  .hero-title-mobile b { color: var(--ink); }
  .hero-title-mobile em {
    margin-top: 8px;
    color: var(--magenta);
    font-style: normal;
  }

  .home-section-heading h2,
  .results-heading h2,
  .pabulo-copy h2,
  .time-teaser-heading h2,
  .home-closing h2,
  .app-copy h2,
  .results-page-hero h1,
  .transformation-gallery-heading h2,
  .results-reviews-heading h2,
  .proof-context h2,
  .profile-hero-copy h1,
  .profile-foundations-heading h2,
  .profile-story h2,
  .profile-instagram h2,
  .community-hero-copy h1,
  .community-section-head h2,
  .community-intro-grid h2,
  .avance-hero h1,
  .avance-benefit h2,
  .avance-experience-heading h2,
  .avance-services .split-heading h2,
  .avance-location h2,
  .page-cta h2,
  .process-grid h2,
  .faq-grid h2,
  .included-heading h2 {
    font-size: clamp(23px, 7.4vw, 34px);
    line-height: .98;
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-hero-visual > img {
    width: 100%;
    height: 100%;
    right: auto;
    bottom: auto;
    object-position: 58% 48%;
  }
}

/* Focused plans: one specialty, the same level of direction */
.plans-mode-nav { grid-template-columns: minmax(0,.9fr) minmax(0,.9fr) minmax(0,1.35fr); }
.focused-plans-section {
  scroll-margin-top: 78px;
  color: var(--white);
  background: #0b0b0c;
}
.focused-plans-heading h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: .94;
}
.focused-plans-heading .section-intro { color: rgba(255,255,255,.62); }
.focused-services { margin-top: 56px; display: grid; gap: 14px; }
.focused-service {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: #121214;
}
.focused-service > summary {
  min-height: 154px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) auto 30px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.focused-service > summary::-webkit-details-marker,
.focused-payment-choice > summary::-webkit-details-marker { display: none; }
.focused-service > summary > span {
  color: var(--magenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.focused-service > summary h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3vw, 44px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.focused-service > summary p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
}
.focused-service > summary > strong {
  color: var(--magenta);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.focused-service > summary > i {
  color: var(--magenta);
  font-size: 27px;
  font-style: normal;
  transition: transform 180ms ease;
}
.focused-service[open] > summary { border-bottom: 1px solid rgba(255,255,255,.14); }
.focused-service[open] > summary > i { transform: rotate(45deg); }
.focused-service-body { padding: 28px; color: var(--ink); background: var(--paper); }
.focused-features {
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.focused-features li {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7,7,7,.1);
  border-radius: 999px;
  background: var(--white);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.focused-features li::before {
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--magenta);
  content: "";
}
.focused-formats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.focused-format {
  overflow: hidden;
  border: 1px solid rgba(7,7,7,.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7,7,7,.04);
}
.focused-format > header {
  min-height: 94px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}
.focused-format > header p {
  margin: 0 0 3px;
  color: rgba(255,255,255,.54);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}
.focused-format > header h4 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.focused-price-list { padding: 10px; display: grid; gap: 9px; }
.focused-price-row {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(100px,1fr) auto;
  gap: 12px 18px;
  align-items: center;
  border: 1px solid rgba(7,7,7,.09);
  border-radius: 16px;
  background: #fafaf8;
}
.focused-price-row-featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 5px 0 0 var(--magenta);
}
.focused-price-period strong { display: block; font-size: 14px; text-transform: uppercase; }
.focused-price-period span {
  margin-top: 6px;
  display: inline-block;
  color: var(--magenta);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.focused-price-value { display: flex; align-items: flex-end; justify-content: flex-end; line-height: .78; }
.focused-price-value > span { margin: 0 5px 4px 0; font-size: 9px; font-weight: 900; }
.focused-price-value > small { margin: 0 5px 4px 0; font-size: 9px; font-weight: 900; }
.focused-price-value > strong { font-size: clamp(42px, 4vw, 58px); letter-spacing: -.075em; }
.focused-price-value > sup { align-self: flex-start; margin: -2px 0 0 2px; font-size: 10px; font-weight: 900; }
.focused-price-row > p {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
}
.focused-price-row-featured > p { color: rgba(255,255,255,.58); }
.focused-payment-choice { grid-column: 1 / -1; border-top: 1px solid rgba(7,7,7,.12); }
.focused-price-row-featured .focused-payment-choice { border-color: rgba(255,255,255,.16); }
.focused-payment-choice > summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--magenta);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
  list-style: none;
  text-transform: uppercase;
}
.focused-payment-choice > summary span { font-size: 18px; transition: transform 180ms ease; }
.focused-payment-choice[open] > summary span { transform: rotate(45deg); }
.focused-payment-panel { padding: 0 0 2px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
.focused-price-row-featured .focused-payment-panel .payment-button small { color: rgba(255,255,255,.58); }

@media (max-width: 1080px) {
  .plans-mode-nav strong { font-size: clamp(20px,2.4vw,30px); }
  .focused-formats { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .plans-mode-nav { grid-template-columns: 1fr; }
  .focused-plans-heading h2 { font-size: clamp(23px,7.4vw,34px); }
  .focused-service > summary {
    min-height: 140px;
    padding: 24px 20px;
    grid-template-columns: 32px minmax(0,1fr) 22px;
    gap: 14px;
  }
  .focused-service > summary > strong { display: none; }
  .focused-service > summary h3 { font-size: clamp(25px,8vw,36px); }
  .focused-service-body { padding: 16px; }
}

@media (max-width: 520px) {
  .plans-mode-nav > a { padding-inline: 18px; grid-template-columns: 24px minmax(0,1fr) 16px; gap: 8px; }
  .plans-mode-nav > a:last-child strong { font-size: 15px; }
  .focused-services { margin-top: 38px; }
  .focused-service { border-radius: 20px; }
  .focused-service > summary { align-items: start; }
  .focused-service > summary p { font-size: 13px; }
  .focused-features { display: grid; grid-template-columns: 1fr; }
  .focused-features li { justify-content: flex-start; }
  .focused-format { border-radius: 18px; }
  .focused-format > header { min-height: 82px; padding: 19px; }
  .focused-price-row { padding: 16px 14px; }
  .focused-price-value > strong { font-size: 43px; }
  .focused-payment-panel { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .home-section-heading h2,
  .results-heading h2,
  .pabulo-copy h2,
  .time-teaser-heading h2,
  .home-closing h2,
  .app-copy h2,
  .results-page-hero h1,
  .transformation-gallery-heading h2,
  .results-reviews-heading h2,
  .proof-context h2,
  .profile-hero-copy h1,
  .profile-foundations-heading h2,
  .profile-story h2,
  .profile-instagram h2,
  .community-hero-copy h1,
  .community-section-head h2,
  .community-intro-grid h2,
  .avance-hero h1,
  .avance-benefit h2,
  .avance-experience-heading h2,
  .avance-services .split-heading h2,
  .avance-location h2,
  .page-cta h2,
  .process-grid h2,
  .faq-grid h2,
  .included-heading h2 {
    font-size: 22px;
  }
}

/* WordPress-ready content blocks */
.google-integration-card {
  min-height: 450px;
  padding: clamp(30px, 4vw, 52px);
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 28px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(7,7,7,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(226,29,120,.11), transparent 34%),
    var(--white);
  box-shadow: 0 18px 45px rgba(7,7,7,.035);
}
.google-integration-card::after {
  position: absolute;
  right: -28px;
  bottom: -70px;
  color: rgba(7,7,7,.025);
  content: "G";
  font-size: 280px;
  font-weight: 950;
  line-height: .8;
}
.google-integration-mark {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--magenta);
  font-size: 22px;
  font-weight: 950;
}
.google-integration-card > div:nth-child(2) { position: relative; z-index: 1; }
.google-integration-card .section-kicker { margin-bottom: 15px; }
.google-integration-card h3 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.google-integration-card p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.integration-status {
  min-height: 36px;
  padding: 0 14px;
  position: absolute;
  z-index: 1;
  right: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(226,29,120,.24);
  border-radius: 999px;
  color: var(--magenta);
  background: rgba(226,29,120,.05);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
}
.google-integration-card-wide { min-height: 390px; }

.google-reviews-wordpress-slot {
  min-width: 0;
  min-height: 320px;
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(7,7,7,.08);
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(7,7,7,.12);
}
.google-reviews-wordpress-slot-wide { width: 100%; }
.google-reviews-wordpress-slot > template,
.google-reviews-wordpress-slot > [data-ti-widget-inited] { display: none; }
.pabulo-google-widget { min-width: 0; }
.pabulo-google-header {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.pabulo-google-company { min-width: 0; display: flex; align-items: center; gap: 15px; }
.pabulo-google-company > img { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; object-fit: cover; }
.pabulo-google-company > div { min-width: 0; display: grid; gap: 5px; }
.pabulo-google-company strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.pabulo-google-company span { color: #ffbd00; font-size: 12px; font-weight: 750; }
.pabulo-google-controls { display: flex; gap: 7px; }
.pabulo-google-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.pabulo-google-controls button:hover,
.pabulo-google-controls button:focus-visible { border-color: var(--magenta); background: var(--magenta); outline: none; }
.pabulo-google-track {
  width: 100%;
  min-width: 0;
  margin-top: 24px;
  padding-bottom: 8px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(226,29,120,.7) rgba(255,255,255,.1);
  scrollbar-width: thin;
}
.pabulo-google-review {
  min-width: 0;
  min-height: 280px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #19191b;
}
.pabulo-google-reviewer { display: flex; align-items: center; gap: 12px; }
.pabulo-google-reviewer > img { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; object-fit: cover; }
.pabulo-google-reviewer > div { min-width: 0; display: grid; gap: 3px; }
.pabulo-google-reviewer strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.pabulo-google-reviewer span { color: rgba(255,255,255,.48); font-size: 11px; }
.pabulo-google-stars { margin-top: 20px; color: #ffbd00; font-size: 18px; letter-spacing: .08em; }
.pabulo-google-review p { max-height: 138px; margin: 17px 0 0; overflow-y: auto; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.pabulo-google-write { margin-top: 22px; display: inline-flex; color: var(--white); font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.pabulo-google-write:hover,
.pabulo-google-write:focus-visible { color: var(--magenta); outline: none; }
.google-reviews-wordpress-slot :where(iframe, img) { max-width: 100%; }
.google-reviews-wordpress-slot :where(.ti-widget-container, .ti-reviews-container-wrapper) { max-width: 100% !important; }
.community-album-link { margin-top: 32px; }
.section-dark .community-album-link.button-primary { border-color: var(--magenta); }

/* Home clinic location */
.home-location { background: #0b0b0c; }
.home-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(420px, 7fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}
.home-location-copy h2 {
  max-width: 600px;
  color: var(--white);
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: .94;
}
.home-location-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.65;
}
.home-location-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.home-location-map {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: #171719;
  box-shadow: 0 28px 64px rgba(0,0,0,.35);
}
.home-location-map iframe { width: 100%; height: 500px; display: block; border: 0; filter: grayscale(.28) contrast(1.04); }

/* Three editorial albums */
.community-page section[id] { scroll-margin-top: 78px; }
.community-moments-carousel {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin: 50px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.community-moments-carousel::before,
.community-moments-carousel::after {
  width: clamp(22px,5vw,76px);
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  pointer-events: none;
  content: "";
}
.community-moments-carousel::before { left: 0; background: linear-gradient(90deg,var(--white),transparent); }
.community-moments-carousel::after { right: 0; background: linear-gradient(270deg,var(--white),transparent); }
.community-moments-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: communityMoments 42s linear infinite;
  will-change: transform;
}
.community-moments-carousel:hover .community-moments-track { animation-play-state: paused; }
.community-moments-set { display: flex; gap: 16px; }
.community-moments-set figure {
  width: clamp(250px,29vw,410px);
  height: clamp(280px,27vw,380px);
  margin: 0;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #deded9;
}
.community-moments-set figure::after {
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg,transparent,rgba(0,0,0,.72));
  content: "";
}
.community-moments-set img { width: 100%; height: 100%; display: block; object-fit: cover; }
.community-moments-set figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: var(--white);
}
.community-moments-set figcaption span,
.community-moments-set figcaption strong { display: block; }
.community-moments-set figcaption span { color: #ff4a9c; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.community-moments-set figcaption strong { margin-top: 7px; font-size: 16px; line-height: 1.1; letter-spacing: -.025em; text-transform: uppercase; }
@keyframes communityMoments {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
.album-nav {
  margin-top: 22px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(7,7,7,.14);
}
.album-nav a {
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(7,7,7,.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}
.album-nav a:first-child { border-left: 1px solid rgba(7,7,7,.14); }
.album-nav a:hover,
.album-nav a:focus-visible { color: var(--white); background: var(--magenta); outline: none; }
.album-nav span { color: var(--magenta); font-size: 9px; }
.album-nav a:hover span,
.album-nav a:focus-visible span { color: var(--white); }
.community-inauguration { background: #101012; }

/* The hero photograph remains complete: no person or edge is cropped. */
.home-hero-visual {
  min-height: 0;
  aspect-ratio: 2 / 3;
  align-self: center;
}
.home-hero-visual > img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .home-location-grid { grid-template-columns: 1fr; }
  .home-location-map,
  .home-location-map iframe { min-height: 420px; height: 420px; }
}

@media (max-width: 820px) {
  .home-hero-visual {
    min-height: 0;
    width: min(100%, 440px);
    margin-inline: auto;
    aspect-ratio: 2 / 3;
  }
  .home-hero-visual > img { object-fit: contain; object-position: center; }
  .home-location-copy h2 { font-size: clamp(23px, 7.4vw, 34px); }
  .community-moments-carousel { margin-top: 38px; border-radius: 22px; }
  .community-moments-set figure { width: min(72vw,360px); height: 310px; border-radius: 20px; }
  .album-nav { grid-template-columns: 1fr; padding-bottom: 0; }
  .album-nav a { min-height: 60px; border-right: 1px solid rgba(7,7,7,.14); border-bottom: 1px solid rgba(7,7,7,.14); }
  .google-integration-card { min-height: 390px; padding: 28px 22px; grid-template-columns: 44px minmax(0,1fr); gap: 17px; }
  .google-integration-mark { width: 44px; height: 44px; font-size: 17px; }
  .integration-status { right: 18px; top: 18px; }
  .google-integration-card h3 { font-size: clamp(23px, 7.4vw, 34px); }
}

@media (max-width: 520px) {
  .community-moments-carousel { width: calc(100% - (var(--gutter) * 2)); }
  .community-moments-set figure { width: 78vw; height: 280px; }
  .community-moments-set figcaption { right: 16px; bottom: 16px; left: 16px; }
  .google-integration-card { min-height: 420px; padding-top: 72px; grid-template-columns: 1fr; align-content: start; }
  .google-integration-card h3 { font-size: 25px; }
  .home-location-actions { align-items: stretch; flex-direction: column; }
  .home-location-actions .button { width: 100%; }
  .home-location-map,
  .home-location-map iframe { min-height: 360px; height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .community-moments-carousel { overflow-x: auto; }
  .community-moments-track { animation: none; }
  .community-moments-set[aria-hidden="true"] { display: none; }
}

/* Clear plan scope without adding visual noise */
.pricing-coverage-note {
  margin: 26px 0 38px;
  padding: 0;
  display: flex;
  justify-content: center;
}
.pricing-coverage-note a {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-coverage-note a span { color: #ff5da8; }
.pricing-coverage-note a:hover,
.pricing-coverage-note a:focus-visible { background: var(--magenta); outline: none; }
.included-details { margin-top: 20px; border-top: 1px solid rgba(7,7,7,.13); }
.included-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}
.included-details summary::-webkit-details-marker { display: none; }
.included-details summary span { color: var(--magenta); font-size: 18px; transition: transform 180ms ease; }
.included-details[open] summary span { transform: rotate(45deg); }
.included-details ul { margin: 0 0 4px; padding: 0; display: grid; gap: 9px; list-style: none; }
.included-details li { padding-left: 13px; position: relative; color: var(--muted); font-size: 11px; line-height: 1.4; }
.included-details li::before { width: 5px; height: 5px; position: absolute; left: 0; top: .46em; border-radius: 50%; background: var(--magenta); content: ""; }
.included-list article:hover .included-details { border-top-color: rgba(255,255,255,.2); }
.included-list article:hover .included-details li { color: rgba(255,255,255,.68); }

@media (max-width: 820px) {
  .pricing-coverage-note a { width: 100%; max-width: 360px; }
}

@media (max-width: 820px) {
  .home-hero-copy h1 .hero-title-mobile { font-size: clamp(26px, 8.8vw, 38px); }
  .app-section-grid { grid-template-columns: minmax(0, 1fr); }
  .app-copy,
  .app-phone-stage { width: 100%; min-width: 0; }
  .app-phone-stage { overflow: hidden; }
  .process-grid,
  .process-grid > *,
  .process-list,
  .process-list li,
  .process-list li > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .process-grid {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    max-width: none;
  }
}

/* Plans page: ordered headings, contained cards and consistent spacing */
.plans-page .plans-intro-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.plans-page .plans-intro-copy { justify-content: flex-start; }
.plans-page .plans-intro-copy p {
  max-width: 760px;
  padding-left: 0;
  border-left: 0;
  font-size: clamp(16px, 1.35vw, 19px);
}

.plans-page .plans-mode-nav > a {
  position: relative;
  grid-template-columns: 32px minmax(0, 1fr);
  padding-right: 68px;
}
.plans-page .plans-mode-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.plans-page .plans-mode-nav > a:last-child strong {
  white-space: normal;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: .98;
  text-wrap: balance;
}
.plans-page .plans-mode-nav b {
  position: absolute;
  right: 28px;
  bottom: 24px;
}

.plans-page .focused-plans-heading,
.plans-page .included-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.plans-page .focused-plans-heading .section-kicker,
.plans-page .included-heading .section-kicker {
  margin: 0 0 22px;
}
.plans-page .focused-plans-heading h2,
.plans-page .included-heading h2 {
  width: 100%;
  max-width: 920px;
}
.plans-page .focused-plans-heading .section-intro,
.plans-page .included-heading .section-intro {
  max-width: 720px;
  margin-top: 24px;
}

.plans-page .price-card-content {
  min-height: 440px;
  padding: 38px clamp(26px, 2.4vw, 38px) 26px;
}
.plans-page .price-value { margin-top: 34px; }
.plans-page .price-payment { margin-top: 14px; font-size: 11px; }
.plans-page .price-consultations { margin-top: 20px; }
.plans-page .price-includes {
  margin-top: 20px;
  padding-top: 18px;
  gap: 11px;
}
.plans-page .price-includes li {
  gap: 11px;
  font-size: clamp(11px, .95vw, 13px);
  line-height: 1.35;
}
.plans-page .price-includes li::before {
  width: 5px;
  height: 5px;
}
.plans-page .bank-slip-benefit {
  margin-top: 22px;
  padding: 18px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  border-radius: 14px;
}
.plans-page .bank-slip-benefit i {
  width: 22px;
  height: 29px;
}

.plans-page .included-list article {
  min-height: 360px;
  padding: clamp(22px, 2vw, 30px);
  overflow: hidden;
}
.plans-page .included-icon {
  width: 36px;
  height: 36px;
  margin: 28px 0 0;
  flex: 0 0 auto;
}
.plans-page .included-icon-01::before {
  width: 36px;
  height: 4px;
  left: 0;
  top: 16px;
  border-radius: 3px;
}
.plans-page .included-icon-01::after {
  width: 26px;
  height: 24px;
  left: 5px;
  top: 6px;
  border: 0;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}
.plans-page .included-icon-04 { margin-left: 0; }
.plans-page .included-list h3 {
  min-height: 2.05em;
  margin: 28px 0 14px;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.02;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.plans-page .included-list p {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5;
}
.plans-page .included-details { margin-top: auto; }

@media (max-width: 820px) {
  .plans-page .plans-mode-nav { grid-template-columns: 1fr; }
  .plans-page .plans-mode-nav > a { padding-right: 58px; }
  .plans-page .plans-mode-nav b { right: 22px; bottom: 22px; }
  .plans-page .price-card-content { padding: 40px 24px 30px; }
  .plans-page .included-list article { min-height: 320px; }
}

@media (max-width: 520px) {
  .plans-page .plans-intro-grid { gap: 18px; }
  .plans-page .focused-plans-heading .section-intro,
  .plans-page .included-heading .section-intro { margin-top: 18px; }
  .plans-page .included-list h3 { min-height: 0; }
}

/* Final editorial alignment and content integrations */
.editorial-three-line {
  line-height: .9;
  text-wrap: balance;
}
.editorial-three-line > span {
  display: block;
  color: inherit;
}
.editorial-three-line > span:last-child { color: var(--magenta); }

.community-page .editorial-three-line,
.avance-page .editorial-three-line {
  max-width: 860px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: .9;
}

.avance-page .avance-brand-intro {
  width: 320px;
  height: 92px;
}
.avance-page .avance-location h2 {
  max-width: 520px;
  font-size: clamp(40px, 3.75vw, 58px);
  line-height: .93;
  white-space: normal;
}
.avance-page .avance-location h2 span {
  display: block;
  color: var(--magenta);
}
.avance-page .page-cta {
  min-height: 640px;
  color: var(--ink);
  background: #f1f0ec;
}
.avance-page .page-cta-mark { color: rgba(226,29,120,.075); }
.avance-page .page-cta .section-kicker { color: var(--magenta); }
.avance-page .page-cta-title { color: var(--ink); }
.avance-page .page-cta-highlight { color: var(--magenta); }

.home-location-title {
  max-width: none;
  font-size: clamp(38px, 3.2vw, 50px);
  line-height: .92;
}
.home-location-title > span {
  display: block;
  white-space: nowrap;
}
.home-location-title > span:first-child { color: var(--white); }
.home-location-title > span:last-child { color: var(--magenta); }

.app-feature-grid-wide {
  width: 100%;
  max-width: none;
  margin-top: -18px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.app-feature-grid-wide span {
  min-width: 0;
  justify-content: center;
  padding-inline: 12px;
  white-space: nowrap;
}

.profile-manifesto-centered {
  min-height: 720px;
  overflow: hidden;
}
.profile-manifesto-copy { position: relative; z-index: 2; }
.student-results-carousel {
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.student-results-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: studentResultsFlow 34s linear infinite;
}
.student-results-carousel:hover .student-results-track { animation-play-state: paused; }
.student-result-card {
  width: clamp(250px, 25vw, 340px);
  min-height: 258px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, #171719, #0d0d0f);
  transition: border-color 180ms ease, transform 180ms ease;
}
.student-result-card:hover,
.student-result-card:focus-visible {
  border-color: rgba(226,29,120,.7);
  transform: translateY(-3px);
  outline: none;
}
.student-result-number {
  color: var(--magenta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.student-result-photos {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.student-result-photos span {
  min-height: 122px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: rgba(255,255,255,.42);
  background: repeating-linear-gradient(135deg, #202024 0, #202024 12px, #19191c 12px, #19191c 24px);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}
.student-result-caption { margin-top: auto; }
.student-result-caption strong,
.student-result-caption small { display: block; }
.student-result-caption strong { font-size: 14px; text-transform: uppercase; }
.student-result-caption small { margin-top: 5px; color: rgba(255,255,255,.42); font-size: 7px; letter-spacing: .07em; }
@keyframes studentResultsFlow {
  to { transform: translateX(calc(-50% - 7px)); }
}

.profile-instagram-grid { align-items: end; }
.instagram-feed-preview {
  margin-top: 54px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.instagram-feed-preview a {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
}
.instagram-feed-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}
.instagram-feed-preview a > span {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(7,7,7,.7);
  backdrop-filter: blur(8px);
}
.instagram-feed-preview a:hover img,
.instagram-feed-preview a:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08);
}
.instagram-feed-preview a:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
.instagram-feed-note {
  max-width: 680px;
  margin: 18px 0 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (min-width: 821px) {
  .editorial-three-line > span { white-space: nowrap; }

  .page-cta h2 {
    max-width: none;
    display: flex;
    align-items: baseline;
    gap: .22em;
    white-space: nowrap;
    font-size: clamp(34px, 3.9vw, 56px);
  }
  .page-cta h2 > span { display: inline; }
  .avance-page .page-cta h2 { font-size: clamp(34px, 3.7vw, 54px); }
}

@media (max-width: 1080px) and (min-width: 821px) {
  .avance-location-grid {
    grid-template-columns: minmax(0, 4fr) minmax(480px, 6fr);
    gap: 40px;
  }
  .app-feature-grid-wide span { font-size: 8px; letter-spacing: .025em; }
}

@media (max-width: 820px) {
  .app-feature-grid-wide {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .app-feature-grid-wide span { white-space: normal; text-align: center; }
  .profile-manifesto-centered { min-height: 650px; }
  .student-results-carousel { margin-top: 38px; }
  .instagram-feed-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-cta h2 { display: block; white-space: normal; }
  .home-location-title { font-size: clamp(25px, 7.2vw, 36px); }
}

@media (max-width: 520px) {
  .avance-page .avance-brand-intro { width: 230px; height: 70px; }
  .avance-photo-logo { width: 170px; }
  .avance-page .page-cta { min-height: 520px; }
  .app-feature-grid-wide { grid-template-columns: 1fr; }
  .student-result-card { width: 78vw; min-height: 238px; }
  .instagram-feed-preview { gap: 8px; }
  .instagram-feed-preview a { border-radius: 15px; }
  .home-location-title { font-size: clamp(23px, 7vw, 31px); }
}

@media (prefers-reduced-motion: reduce) {
  .student-results-carousel { overflow-x: auto; mask-image: none; }
  .student-results-track { animation: none; }
  .student-results-track .student-result-card:nth-child(n + 5) { display: none; }
}

/* Section hierarchy: pink label, title, then supporting copy */
.section-kicker-light { color: var(--magenta); }

.home-section-heading,
.transformation-gallery-heading,
.community-section-head,
.community-intro-grid,
.avance-services .split-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.home-section-heading .section-kicker,
.community-section-head .section-kicker {
  margin-bottom: 22px;
}
.home-section-heading > p:last-child,
.transformation-gallery-heading > p:last-child,
.community-section-head > p:last-child,
.community-intro-grid > p:last-child,
.avance-services .split-heading > .section-intro {
  width: 100%;
  max-width: 720px;
  margin: 26px 0 0;
  align-self: auto;
}

/* The former three-line editorial lockup now follows the two-line standard. */
.editorial-three-line > span {
  display: inline;
  white-space: nowrap;
}
.editorial-three-line > span:nth-child(2)::before { content: " "; }
.editorial-three-line > span:last-child {
  display: block;
  color: var(--magenta);
}
.editorial-three-line > span:last-child::before { content: none; }

@media (min-width: 821px) {
  .inner-page h1,
  .inner-page h2,
  .home-page section:not(.home-hero) h2 {
    white-space: nowrap;
  }

  .inner-page h1 > span,
  .inner-page h2 > span,
  .home-page section:not(.home-hero) h2 > span {
    white-space: nowrap;
  }

  .page-cta h2 > span { display: inline; }
  .editorial-three-line > span { display: inline; }
  .editorial-three-line > span:last-child { display: block; }
}

@media (max-width: 820px) {
  .home-section-heading > p:last-child,
  .transformation-gallery-heading > p:last-child,
  .community-section-head > p:last-child,
  .community-intro-grid > p:last-child,
  .avance-services .split-heading > .section-intro {
    margin-top: 20px;
  }

  .editorial-three-line > span { white-space: normal; }
}

/* Avance hero: the brand appears only in the page introduction. */
.avance-page .avance-hero-dark { padding-block: clamp(38px, 5vw, 64px); }
.avance-page .avance-hero-photo {
  width: min(100%, 1040px);
  height: clamp(390px, 44vw, 560px);
  min-height: 0;
  margin-inline: auto;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.avance-page .avance-hero-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.03) 46%, rgba(7,7,7,.5) 100%);
  content: "";
  pointer-events: none;
}
.avance-page .avance-hero-photo > img {
  filter: saturate(.88) contrast(1.04) brightness(.96);
}

@media (max-width: 520px) {
  .avance-page .avance-hero-photo { height: 330px; }
}

/* Avance line locks requested in the final review */
.avance-page .avance-benefit h2 {
  max-width: none;
  font-size: clamp(32px, 3.45vw, 52px);
  line-height: .96;
  white-space: nowrap;
}
.avance-page .avance-benefit h2 span {
  display: inline;
  color: var(--white);
}
.avance-page .avance-benefit h2 span::before { content: " "; }

.avance-page .display-heading h2.editorial-three-line > span,
.community-page .display-heading h2.editorial-three-line > span {
  display: inline;
}
.avance-page .display-heading h2.editorial-three-line > span:last-child,
.community-page .display-heading h2.editorial-three-line > span:last-child {
  display: block;
}

.avance-page .avance-location h2 {
  max-width: none;
  font-size: clamp(34px, 3vw, 46px);
  line-height: .94;
  white-space: nowrap;
}
.avance-page .avance-location h2 span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .avance-page .avance-benefit h2 {
    white-space: normal;
  }
  .avance-page .avance-benefit h2 span {
    display: block;
  }
  .avance-page .avance-benefit h2 span::before { content: none; }
  .avance-page .avance-location h2,
  .avance-page .avance-location h2 span { white-space: normal; }
}

/* The lead phone slightly breaks the upper edge of the app card. */
.app-section-card { overflow: visible; }
.app-section-card::before { top: 0; }
.app-section-card::after { bottom: 2%; }
.app-phone-front { top: -18%; }

@media (max-width: 820px) {
  .app-phone-front { top: -7%; }
}

@media (max-width: 520px) {
  .app-phone-front { top: -3%; }
}

/* Direct, contextual contact for every Avance specialty. */
.avance-service > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.avance-service-whatsapp {
  min-height: 48px;
  margin-top: 22px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(226,29,120,.28);
  color: var(--magenta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.avance-service-whatsapp span { font-size: 17px; }
.avance-service-whatsapp:hover,
.avance-service-whatsapp:focus-visible {
  border-color: var(--magenta);
  color: var(--ink);
  outline: none;
}

/* Instagram bio hub */
.bio-page {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 64px) 18px 30px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
  color: var(--white);
}

.bio-page::before {
  width: 100%;
  height: clamp(640px, 68vw, 780px);
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  background:
    radial-gradient(circle at 50% 12%, rgba(226, 29, 120, .08), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f9f9f7 34%, #d8d8d6 57%, #4b4b4d 79%, #050505 100%);
  content: "";
  pointer-events: none;
}

.bio-shell {
  width: min(100%, 880px);
  margin-inline: auto;
}

.bio-header {
  padding-bottom: clamp(34px, 5vw, 54px);
  text-align: center;
}

.bio-logo-link {
  width: min(100%, 660px);
  aspect-ratio: 2 / 1;
  height: auto;
  margin: clamp(-92px, -7vw, -52px) auto clamp(-76px, -6vw, -44px);
  display: block;
}

.bio-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.bio-kicker {
  margin: 0 0 15px;
  color: #ff5da8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
}

.bio-header h1 {
  max-width: 680px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(42px, 8vw, 72px);
  line-height: .92;
}

.bio-header h1 span {
  display: block;
  color: var(--magenta);
}

.bio-intro {
  max-width: 520px;
  margin: 22px auto 0;
  color: rgba(7, 7, 7, .64);
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.55;
}

.bio-plans,
.bio-secondary-links {
  display: grid;
  gap: 18px;
}

.bio-plan-card,
.bio-wide-card {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background: #121214;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.bio-plan-card:hover,
.bio-plan-card:focus-visible,
.bio-wide-card:hover,
.bio-wide-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(226, 29, 120, .7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  outline: none;
}

.bio-card-copy,
.bio-wide-card-copy {
  min-width: 0;
  padding: clamp(28px, 4.5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.bio-card-copy > p,
.bio-wide-card-copy > p {
  margin: 0 0 12px;
  color: #ff5da8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.bio-card-copy h2,
.bio-wide-card-copy h2 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: .92;
}

.bio-card-copy > span,
.bio-wide-card-copy > span {
  max-width: 34ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.45;
}

.bio-card-copy > strong,
.bio-wide-card-copy > strong {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.bio-card-copy strong i,
.bio-wide-card-copy strong i,
.bio-small-link i,
.bio-instagram-link i {
  color: var(--magenta);
  font-size: 18px;
  font-style: normal;
}

.bio-card-photo,
.bio-wide-card-photo {
  min-height: 290px;
  position: relative;
  overflow: hidden;
}

.bio-card-photo::after,
.bio-wide-card-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #121214 0%, rgba(18, 18, 20, .1) 35%, transparent 65%);
  content: "";
}

.bio-card-photo img,
.bio-wide-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  transition: transform 500ms ease;
}

.bio-plan-card:hover img,
.bio-plan-card:focus-visible img,
.bio-wide-card:hover img,
.bio-wide-card:focus-visible img { transform: scale(1.035); }

.bio-plan-card:nth-child(1) .bio-card-photo img { object-position: center 30%; }
.bio-plan-card:nth-child(2) .bio-card-photo img { object-position: center 22%; }
.bio-plan-card:nth-child(3) .bio-card-photo img { object-position: center 24%; }

.bio-secondary-links {
  margin-top: clamp(52px, 7vw, 78px);
}

.bio-wide-card {
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 1fr);
  background: #f5f5f2;
  color: var(--ink);
}

.bio-wide-card-copy > span { color: rgba(7, 7, 7, .62); }
.bio-wide-card-copy > strong { color: var(--ink); }
.bio-wide-card-photo { min-height: 320px; }
.bio-wide-card-photo::after {
  background: linear-gradient(90deg, #f5f5f2 0%, rgba(245, 245, 242, .08) 40%, transparent 70%);
}
.bio-wide-card-photo img { object-position: center 45%; }

.bio-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bio-small-link {
  min-height: 126px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  column-gap: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bio-small-link:hover,
.bio-small-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(226, 29, 120, .7);
  background: rgba(226, 29, 120, .08);
  outline: none;
}

.bio-small-link span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.bio-small-link small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.4;
}

.bio-small-link i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.bio-instagram-link {
  min-height: 76px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: var(--magenta);
  color: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bio-instagram-link:hover,
.bio-instagram-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(226, 29, 120, .24);
  outline: none;
}

.bio-instagram-link span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bio-instagram-link strong { font-size: 16px; }
.bio-instagram-link i { color: var(--white); }

.bio-footer {
  padding: clamp(54px, 8vw, 86px) 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bio-footer-logo {
  width: 112px;
  height: 52px;
  padding: 2px 6px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
}

.bio-footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.bio-footer p { margin: 0; }
.bio-footer a { transition: color 180ms ease; }
.bio-footer a:hover,
.bio-footer a:focus-visible { color: var(--white); outline: none; }

@media (max-width: 700px) {
  .bio-page { padding-inline: 14px; }
  .bio-page::before { height: 650px; }
  .bio-logo-link {
    margin-top: clamp(-58px, -12vw, -34px);
    margin-bottom: clamp(-44px, -9vw, -24px);
  }
  .bio-plan-card,
  .bio-wide-card {
    min-height: 260px;
    grid-template-columns: minmax(0, 1.18fr) minmax(112px, .82fr);
    grid-template-rows: minmax(260px, auto);
    border-radius: 22px;
  }
  .bio-card-copy,
  .bio-wide-card-copy { padding: 24px 18px 22px; }
  .bio-card-copy h2,
  .bio-wide-card-copy h2 { font-size: clamp(30px, 8.4vw, 42px); }
  .bio-card-copy > span,
  .bio-wide-card-copy > span { margin-top: 12px; font-size: 12px; }
  .bio-card-copy > strong,
  .bio-wide-card-copy > strong { margin-top: 18px; font-size: 8px; }
  .bio-card-photo,
  .bio-wide-card-photo { min-height: 260px; }
  .bio-card-photo::after,
  .bio-wide-card-photo::after {
    background: linear-gradient(90deg, #121214 0%, rgba(18, 18, 20, .08) 32%, transparent 68%);
  }
  .bio-wide-card-photo::after {
    background: linear-gradient(90deg, #f5f5f2 0%, rgba(245, 245, 242, .08) 32%, transparent 68%);
  }
  .bio-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .bio-header h1 { font-size: 44px; }
  .bio-instagram-link { grid-template-columns: 1fr auto; }
  .bio-instagram-link strong { display: none; }
  .bio-footer { flex-wrap: wrap; gap: 10px 14px; }
  .bio-footer-logo { flex-basis: 112px; }
}

/* Planos: o título e as etapas ocupam faixas independentes para nunca se sobreporem. */
.plans-page .process-section { overflow: hidden; }

.plans-page .process-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 5vw, 64px);
}

.plans-page .process-grid > .display-heading {
  width: 100%;
  max-width: 1120px;
}

.plans-page .process-grid h2 {
  width: 100%;
  max-width: none;
  margin-top: 22px;
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: .9;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.plans-page .process-grid h2 > span {
  display: block;
  white-space: nowrap;
}

.plans-page .process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plans-page .process-list li {
  min-height: 250px;
  padding: 26px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 28px;
  align-items: stretch;
  align-content: stretch;
}

.plans-page .process-list li > span {
  align-self: start;
  font-size: 62px;
}

.plans-page .process-list li > div {
  align-self: end;
}

.plans-page .process-list strong {
  display: block;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1;
}

.plans-page .process-list p {
  max-width: 30ch;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .plans-page .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .plans-page .process-grid h2 {
    font-size: clamp(30px, 9.4vw, 48px);
    letter-spacing: -.06em;
  }

  .plans-page .process-list li { min-height: 210px; }
}

@media (max-width: 560px) {
  .plans-page .process-list { grid-template-columns: minmax(0, 1fr); }
  .plans-page .process-list li { min-height: 190px; }
}

/* Cards de entrada da Home agora funcionam como atalhos completos. */
.pillar-link { min-width: 0; grid-column: span 2; display: block; border-radius: 24px; }
.pillar-link:nth-last-child(-n+2) { grid-column: span 3; }
.pillar-link article { height: 100%; position: relative; }
.pillar-arrow {
  position: absolute;
  right: 27px;
  top: 25px;
  color: var(--magenta);
  font-size: 20px;
  transition: transform 180ms ease;
}
.pillar-link:hover .pillar-arrow,
.pillar-link:focus-visible .pillar-arrow { transform: translate(3px,-3px); }
.pillar-link:focus-visible { outline: 3px solid var(--magenta); outline-offset: 4px; }

/* Comparativos sem o selo circular central: cada lado é recortado antes da divisão. */
.result-split-image {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  overflow: hidden;
  background: #0a0a0b;
}
.result-split-panel { min-width: 0; height: 100%; position: relative; overflow: hidden; display: block; }
.result-split-panel img {
  width: 232%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  object-fit: fill;
}
.result-split-before img { left: 0; }
.result-split-after img { right: 0; }
.result-split-before { border-right: 2px solid #070707; }
.result-comparison-visual:hover .result-split-image,
.result-comparison-visual:focus-visible .result-split-image { transform: scale(1.018); }
.result-lightbox-split { width: min(72vw, 720px); aspect-ratio: 4 / 5; border-radius: 16px; }
.result-lightbox figure .result-lightbox-split img { width: 232%; max-width: none; height: 100%; max-height: none; border-radius: 0; object-fit: fill; }
.home-result-card .result-split-image { aspect-ratio: 4 / 5; transition: transform 220ms ease, filter 220ms ease; }
.home-result-card:hover .result-split-image,
.home-result-card:focus-visible .result-split-image { transform: scale(1.025); filter: brightness(1.04); }
.transformation-gallery-title,
.transformation-gallery-title > span { color: var(--magenta) !important; }

/* Faixa editorial de resultados na Home. */
.home-results-story { overflow: hidden; }
.home-results-story-heading { max-width: 1180px; }
.home-results-story-heading h2 { max-width: 1120px; color: var(--white); font-size: clamp(48px,5.4vw,82px); }
.home-results-story-heading h2 span { display: block; color: var(--magenta); }
.home-results-story-heading > p:last-child { max-width: 820px; margin: 28px 0 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.65; }
.home-results-story .home-results-preview { margin-top: 56px; }
.home-results-story .home-result-card { border: 1px solid rgba(255,255,255,.16); }

/* Capa quadrada do vídeo Connecta e reprodução em destaque. */
.connecta-video-frame {
  width: min(100%, 390px);
  aspect-ratio: 1;
  padding: 0;
  border-radius: 28px;
  cursor: pointer;
}
.connecta-video-frame > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 260ms ease; }
.connecta-video-shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(7,7,7,.05),rgba(7,7,7,.72)); }
.connecta-video-play { width: 78px; height: 78px; position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--magenta); font-size: 26px; transform: translate(-50%,-50%); box-shadow: 0 18px 45px rgba(0,0,0,.32); }
.connecta-video-frame > strong { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: var(--white); font-size: 10px; letter-spacing: .14em; text-align: left; }
.connecta-video-frame:hover > img,
.connecta-video-frame:focus-visible > img { transform: scale(1.035); }
.connecta-video-frame:focus-visible { border-color: var(--magenta); outline: 3px solid var(--magenta); outline-offset: 4px; }
body.connecta-video-is-open { overflow: hidden; }
.connecta-video-modal { padding: 32px; position: fixed; z-index: 100002; inset: 0; display: grid; place-items: center; background: rgba(4,4,5,.94); backdrop-filter: blur(14px); }
.connecta-video-modal[hidden] { display: none; }
.connecta-video-player { height: min(88vh, 820px); aspect-ratio: 9 / 16; overflow: hidden; border-radius: 24px; background: #111; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.connecta-video-player iframe { width: 100%; height: 100%; display: block; border: 0; }
.connecta-video-close { width: 48px; height: 48px; position: fixed; z-index: 1; top: 20px; right: 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: #111; cursor: pointer; font-size: 28px; }
.connecta-video-close:hover,
.connecta-video-close:focus-visible { border-color: var(--magenta); background: var(--magenta); outline: none; }

/* Tutorial personalizado de instalação no iPhone. */
.install-hero { padding-block: clamp(70px,8vw,118px); overflow: hidden; }
.install-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(290px,330px); gap: clamp(42px,5vw,74px); align-items: center; }
.install-hero-copy h1 { max-width: 780px; color: var(--white); font-size: clamp(48px,5.2vw,74px); }
.install-hero-copy h1 span { display: block; color: var(--magenta); }
.install-hero-copy > p:not(.section-kicker) { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.65; }
.install-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: center; }
.install-actions > span { color: rgba(255,255,255,.48); font-size: 11px; }
.install-hero-phone { width: min(100%, 330px); height: 650px; margin-inline: auto; padding: 10px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 52px; background: #111; transform: rotate(3deg); box-shadow: 25px 35px 0 rgba(226,29,120,.14), 0 40px 90px rgba(0,0,0,.42); }
.install-hero-phone::before { width: 100px; height: 25px; position: absolute; z-index: 2; left: 50%; top: 16px; border-radius: 20px; background: #070707; content: ""; transform: translateX(-50%); }
.install-hero-phone img { width: 100%; height: 100%; display: block; border-radius: 42px; object-fit: cover; object-position: top center; }
.install-heading { max-width: 1080px; }
.install-heading h2 span { display: block; color: var(--magenta); }
.install-alert { margin-top: 50px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(226,29,120,.24); border-radius: 22px; background: var(--white); }
.install-alert strong { display: block; font-size: 13px; text-transform: uppercase; }
.install-alert p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.install-alert a { color: var(--magenta); font-size: 11px; font-weight: 900; }
.install-steps { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; list-style: none; }
.install-steps > li { min-width: 0; padding: 26px; overflow: hidden; border: 1px solid rgba(7,7,7,.1); border-radius: 26px; background: var(--white); }
.install-step-copy { min-height: 150px; }
.install-step-copy > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--magenta); font-size: 10px; font-weight: 900; }
.install-step-copy h3 { margin: 22px 0 0; font-size: clamp(25px,2.3vw,34px); line-height: 1; text-transform: uppercase; }
.install-step-copy p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.install-step-visual { min-height: 390px; margin-top: 24px; padding: 24px 24px 0; display: flex; justify-content: center; overflow: hidden; border-radius: 20px; background: #f1f0ec; }
.install-mini-phone { width: 210px; height: 430px; padding: 7px; position: relative; border-radius: 38px; background: #101012; box-shadow: 0 20px 55px rgba(7,7,7,.19); }
.install-mini-notch { width: 70px; height: 18px; position: absolute; z-index: 3; left: 50%; top: 12px; border-radius: 12px; background: #070707; transform: translateX(-50%); }
.install-mini-screen { width: 100%; height: 100%; position: relative; overflow: hidden; border-radius: 32px; background: #171719; }
.install-mini-screen > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; filter: brightness(.66); }
.install-ios-layer { padding: 18px; position: absolute; z-index: 2; inset: auto 9px 14px; display: grid; gap: 8px; border-radius: 17px; color: #111; background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(0,0,0,.2); }
.install-ios-layer small { color: #777; font-size: 8px; }
.install-ios-layer b { font-size: 10px; line-height: 1.35; }
.install-ios-layer em { color: #1478ff; font-size: 9px; font-style: normal; font-weight: 900; }
.install-ios-layer > i:not(.install-toggle) { color: var(--magenta); font-size: 30px; font-style: normal; font-weight: 900; text-align: center; }
.install-step-share .install-ios-layer { text-align: center; }
.install-step-confirm .install-ios-layer,
.install-step-toggle .install-ios-layer { inset: 72px 9px auto; }
.install-toggle { justify-self: end; padding: 3px 5px 3px 19px; border-radius: 999px; color: var(--white); background: #32c759; font-size: 10px; font-style: normal; }
.install-step-ready .install-ios-layer { inset: 90px 36px auto; justify-items: center; color: var(--white); background: rgba(7,7,7,.8); }
.install-app-icon { width: 68px !important; height: 68px !important; border-radius: 16px; object-fit: contain !important; filter: none !important; }
.install-finish { margin-top: 28px; padding: clamp(34px,5vw,68px); display: flex; align-items: end; justify-content: space-between; gap: 36px; border-radius: 30px; }
.install-finish h2 { max-width: 780px; color: var(--white); font-size: clamp(42px,4.8vw,72px); }
.install-finish h2 span { display: block; color: var(--magenta); }

@media (max-width: 1080px) {
  .pillar-link,
  .pillar-link:nth-last-child(-n+2) { grid-column: span 1; }
  .pillar-link:last-child { grid-column: 1 / -1; }
  .install-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .install-hero-grid { grid-template-columns: minmax(0,1fr); }
  .install-hero-phone { height: 580px; }
  .install-alert { align-items: flex-start; flex-direction: column; }
  .install-finish { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .pillar-link,
  .pillar-link:last-child { grid-column: auto; }
  .home-results-story-heading h2 { font-size: clamp(38px,11vw,52px); }
  .result-lightbox-split { width: min(74vw, 520px); }
  .connecta-video-modal { padding: 64px 12px 12px; }
  .connecta-video-player { width: min(100%, 360px); height: auto; aspect-ratio: 9 / 16; }
  .install-hero-copy h1 { font-size: clamp(44px,13vw,62px); }
  .install-hero-phone { width: 280px; height: 550px; }
  .install-actions { align-items: stretch; flex-direction: column; }
  .install-actions .button { width: 100%; }
  .install-steps { grid-template-columns: minmax(0,1fr); }
  .install-steps > li { padding: 20px; }
  .install-step-visual { min-height: 360px; }
  .install-mini-phone { width: 195px; height: 400px; }
  .install-finish .button { width: 100%; }
}

/* Planos: o FAQ segue a mesma hierarquia, sem título invadindo as perguntas. */
.plans-page .faq-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 5vw, 64px);
}

.plans-page .faq-grid > .display-heading {
  width: 100%;
  max-width: 980px;
}

.plans-page .faq-grid h2 {
  max-width: none;
  margin-top: 22px;
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: .9;
  letter-spacing: -.065em;
}

.plans-page .faq-list { width: 100%; }

@media (max-width: 820px) {
  .plans-page .process-grid h2,
  .plans-page .faq-grid h2 {
    font-size: clamp(26px, 8.1vw, 42px);
  }
}

/* Personalização: texto de apoio abaixo do título e cards com leitura uniforme. */
.profile-page .profile-foundations-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.profile-page .profile-foundations-heading h2 { max-width: 1040px; }
.profile-page .profile-foundations-heading .section-intro {
  max-width: 790px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.student-result-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 18px 0;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  background: #202024;
}

/* Home: uma prévia real leva ao acervo completo de antes e depois. */
.home-results-preview {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 22px;
}

.home-results-track {
  width: max-content;
  display: flex;
  animation: homeResultsMove 46s linear infinite;
  will-change: transform;
}

.home-results-set {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.home-result-card {
  width: clamp(220px, 21vw, 330px);
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: var(--ink);
}

.home-result-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-result-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7,7,7,.78));
  content: "";
  pointer-events: none;
}

.home-result-card > span:not(.result-split-image) {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-result-card:hover > img,
.home-result-card:focus-visible > img { transform: scale(1.025); filter: brightness(1.04); }
.home-result-card:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
.home-results-preview:hover .home-results-track,
.home-results-preview:focus-within .home-results-track { animation-play-state: paused; }
.home-results-link { margin-top: 28px; }

@keyframes homeResultsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Avance: todas as chamadas ficam contidas e a marca aparece no início. */
.avance-page .avance-brand-intro {
  width: min(360px, 72vw);
  height: auto;
  margin: 0 auto 30px;
  display: block;
  object-fit: contain;
  background: none;
}

.avance-page .avance-benefit-grid {
  grid-template-columns: minmax(170px, 2.4fr) minmax(0, 9.6fr);
  gap: clamp(26px, 4vw, 56px);
}

.avance-page .avance-benefit h2 {
  max-width: 100%;
  font-size: clamp(27px, 2.55vw, 40px);
  letter-spacing: -.055em;
  white-space: nowrap;
}

.avance-page .avance-benefit h2 span { display: inline; white-space: nowrap; }
.avance-page .avance-benefit h2 span::before { content: " "; }

.avance-page .avance-location-grid {
  grid-template-columns: minmax(0, 5fr) minmax(520px, 7fr);
  gap: clamp(42px, 5vw, 70px);
}

.avance-page .avance-location h2,
.home-page .home-location-title {
  max-width: 100%;
  font-size: clamp(34px, 3.05vw, 45px);
  letter-spacing: -.055em;
  white-space: normal;
}

.avance-page .avance-location h2 span,
.home-page .home-location-title > span {
  display: block;
  white-space: nowrap;
}

.home-page .home-location-grid {
  grid-template-columns: minmax(0, 5.2fr) minmax(520px, 6.8fr);
  gap: clamp(42px, 5vw, 70px);
}

.avance-page .avance-service-whatsapp { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 1100px) {
  .pabulo-google-track { grid-auto-columns: calc((100% - 12px) / 2); }
  .avance-page .avance-location-grid,
  .home-page .home-location-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 820px) {
  .avance-page .avance-benefit-grid { grid-template-columns: minmax(0, 1fr); }
  .avance-page .avance-benefit h2,
  .avance-page .avance-benefit h2 span { white-space: normal; }
  .avance-page .avance-benefit h2 span { display: block; }
  .avance-page .avance-benefit h2 span::before { content: none; }
  .avance-page .avance-location h2,
  .home-page .home-location-title { font-size: clamp(27px, 8vw, 38px); }
}

@media (max-width: 520px) {
  .home-result-card { width: 72vw; }
}

/* Connecta */
.connecta-hero { padding-block: clamp(72px, 8vw, 118px); }
.connecta-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(38px, 4vw, 58px);
  align-items: center;
}
.connecta-hero-copy { min-width: 0; }
.connecta-hero-copy h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(44px, 4vw, 60px);
  line-height: .92;
  letter-spacing: -.065em;
}
.connecta-hero-copy h1 span { display: block; color: var(--magenta); }
.connecta-hero-copy h1 .connecta-title-base { color: var(--white); }
.connecta-hero-copy > p:last-of-type {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 16px;
  line-height: 1.65;
}
.connecta-hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.connecta-video-stage {
  width: min(100%, 430px);
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 15px;
}
.connecta-video-stage > p {
  margin: 0;
  color: #ff5da8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
}
.connecta-video-stage > span {
  max-width: 36ch;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
.connecta-video-frame {
  width: min(100%, 370px);
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  background: #141416;
  box-shadow: 16px 16px 0 rgba(226,29,120,.16), 0 34px 80px rgba(0,0,0,.42);
}
.connecta-video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }

.connecta-pillars-heading { max-width: 1080px; }
.connecta-pillars-heading h2 { max-width: 980px; }
.connecta-pillars-heading h2 span { display: block; color: var(--magenta); }
.connecta-pillars-heading > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.connecta-pillar-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.connecta-pillar-grid article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7,7,7,.12);
  border-radius: 24px;
  background: var(--white);
}
.connecta-pillar-grid article:nth-child(2) { color: var(--white); background: var(--ink); }
.connecta-pillar-grid article:nth-child(3) { background: var(--magenta); }
.connecta-pillar-grid article > span { color: var(--magenta); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.connecta-pillar-grid article:nth-child(3) > span { color: var(--white); }
.connecta-pillar-grid h3 { margin: auto 0 16px; font-size: clamp(30px, 3vw, 46px); line-height: .95; text-transform: uppercase; }
.connecta-pillar-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.connecta-pillar-grid article:nth-child(2) p,
.connecta-pillar-grid article:nth-child(3) p { color: rgba(255,255,255,.68); }

.connecta-gallery-heading { max-width: 1040px; }
.connecta-gallery-heading h2 { color: var(--white); }
.connecta-gallery-heading h2 span { display: block; color: var(--magenta); }
.connecta-gallery-heading > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.65;
}
.connecta-gallery { margin-top: 52px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.connecta-gallery figure { min-height: 320px; margin: 0; position: relative; overflow: hidden; border-radius: 22px; background: #171719; }
.connecta-gallery-featured { grid-column: span 2; grid-row: span 2; min-height: 652px !important; }
.connecta-gallery-open { width: 100%; height: 100%; padding: 0; position: absolute; inset: 0; border: 0; background: transparent; cursor: zoom-in; }
.connecta-gallery img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 240ms ease; }
.connecta-gallery figure::after { position: absolute; inset: auto 0 0; height: 44%; background: linear-gradient(180deg, transparent, rgba(7,7,7,.74)); content: ""; pointer-events: none; }
.connecta-gallery figcaption { position: absolute; z-index: 1; left: 20px; bottom: 18px; color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.connecta-gallery-open > span { position: absolute; z-index: 2; top: 16px; right: 16px; padding: 9px 11px; border-radius: 999px; color: var(--white); background: rgba(7,7,7,.74); font-size: 7px; font-weight: 900; letter-spacing: .12em; opacity: 0; transform: translateY(-4px); transition: opacity 180ms ease, transform 180ms ease; }
.connecta-gallery-open:hover > span,
.connecta-gallery-open:focus-visible > span { opacity: 1; transform: none; }
.connecta-gallery-open:focus-visible { outline: 3px solid var(--magenta); outline-offset: -3px; }
.connecta-gallery figure:hover img { transform: scale(1.025); }

@media (min-width: 821px) {
  .connecta-page h2,
  .connecta-page h2 > span { white-space: nowrap; }
}

@media (max-width: 1160px) {
  .connecta-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .connecta-video-stage { width: min(100%, 410px); }
  .connecta-video-frame { width: min(100%, 350px); }
}

@media (max-width: 820px) {
  .connecta-hero-copy h1,
  .connecta-pillars-heading h2,
  .connecta-gallery-heading h2 { font-size: clamp(34px, 10vw, 52px); }
  .connecta-pillar-grid { grid-template-columns: minmax(0, 1fr); }
  .connecta-pillar-grid article { min-height: 240px; }
  .connecta-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connecta-gallery-featured { grid-column: 1 / -1; grid-row: auto; min-height: 440px !important; }
  .pabulo-google-track { grid-auto-columns: minmax(260px, 82%); }
}

@media (max-width: 520px) {
  .connecta-hero-actions { align-items: stretch; flex-direction: column; }
  .connecta-hero-actions .button { width: 100%; }
  .connecta-gallery { grid-template-columns: minmax(0, 1fr); }
  .connecta-gallery-featured { min-height: 380px !important; }
  .connecta-gallery figure { min-height: 300px; }
  .connecta-video-stage { margin-top: 8px; }
  .connecta-video-frame { width: min(100%, 310px); border-radius: 24px; }
  .result-lightbox { padding: 70px 10px 18px; grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 5px; }
  .result-lightbox-close { width: 42px; height: 42px; top: 12px; right: 12px; }
  .result-lightbox-nav { width: 40px; height: 40px; }
  .result-lightbox figure img { max-height: 76vh; border-radius: 12px; }
  .google-reviews-wordpress-slot { padding: 20px 16px; border-radius: 20px; }
  .pabulo-google-header { align-items: flex-start; }
  .pabulo-google-company > img { width: 44px; height: 44px; flex-basis: 44px; }
  .pabulo-google-company strong { max-width: 170px; }
  .pabulo-google-company span { font-size: 10px; }
  .pabulo-google-controls button { width: 36px; height: 36px; }
  .pabulo-google-track { grid-auto-columns: minmax(250px, 91%); }
}

@media (prefers-reduced-motion: reduce) {
  .home-results-preview { overflow-x: auto; }
  .home-results-track { animation: none; }
  .home-results-set[aria-hidden="true"] { display: none; }
}

/* Consentimento e mensuração Meta, exibidos somente quando um Pixel está configurado. */
.pabulo-consent {
  width: min(calc(100% - 24px), 620px);
  padding: 16px;
  position: fixed;
  z-index: 100001;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: var(--white);
  background: rgba(7,7,7,.96);
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
}
.pabulo-consent p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.45; }
.pabulo-consent strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 12px; }
.pabulo-consent-actions { display: flex; gap: 7px; }
.pabulo-consent button { min-height: 38px; padding: 0 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: var(--white); background: transparent; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.pabulo-consent button[data-consent-accept] { border-color: var(--magenta); background: var(--magenta); }
.pabulo-consent button:hover,
.pabulo-consent button:focus-visible { border-color: var(--magenta); outline: none; }
@media (max-width: 560px) {
  .pabulo-consent { grid-template-columns: minmax(0,1fr); }
  .pabulo-consent-actions { justify-content: flex-end; }
}

/* Mantido ao fim do arquivo para prevalecer sobre o antigo embed vertical. */
.connecta-video-frame {
  width: min(100%, 390px);
  aspect-ratio: 1;
  padding: 0;
  border-radius: 28px;
}
@media (max-width: 520px) {
  .connecta-video-frame { width: min(100%, 310px); aspect-ratio: 1; }
}
