/* ============================================================
   MAPEAMENTO DE ARÉOLAS — Landing Page
   Branco / Rosé (#CE9E96) / Grafite (#171717)
   ============================================================ */

:root {
  --bg: #0B0B0B;
  --white: #FFFFFF;
  --rose: #CE9E96;
  --rose-dark: #B7827E;
  --rose-deep: #A06867;
  --rose-tint: #221819;
  --rose-tint-2: #1B1415;
  --graphite: #171717;
  --graphite-soft: #2B2B2B;
  --text-muted: #A99F9C;
  --divider: rgba(255,255,255,0.1);
  --ph-bg: #1C1817;
  --ph-border: #3A3433;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --container-w: 1220px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture — sits above everything, never blocks clicks */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.is-hidden-temp { display: none; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16,0.8,0.24,1), transform 0.8s cubic-bezier(0.16,0.8,0.24,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.anatomy-image.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 2s cubic-bezier(0.16,0.8,0.24,1), transform 2s cubic-bezier(0.16,0.8,0.24,1);
}
.anatomy-image.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
}
.section-title.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.editable-note {
  color: #9C9290;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, #2b2b2b 0%, #050505 100%);
  border-radius: 100px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0px 0px 0px 1px rgba(255,255,255,0.14),
    0px 20px 12px rgba(0,0,0,0.15),
    0px 9px 9px rgba(0,0,0,0.2),
    0px 4px 4px rgba(0,0,0,0.25),
    0px 2px 5px rgba(0,0,0,0.3);
  transition:
    background 0.6s ease-in-out,
    box-shadow 0.6s ease-in-out,
    color 0.5s ease-in-out,
    transform 0.4s ease-out;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.btn-label { position: relative; z-index: 3; }

.btn .ripple {
  position: absolute;
  z-index: 4;
  left: var(--rx);
  top: var(--ry);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation: liquid-ripple 0.6s ease-out forwards;
}

@keyframes liquid-ripple {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  to { transform: translate(-50%, -50%) scale(10); opacity: 0; }
}

.btn:hover {
  color: var(--white);
  background: linear-gradient(180deg, var(--rose) 0%, var(--rose-dark) 100%);
  transform: translateY(-2px);
  box-shadow:
    0px 0px 0px 1px rgba(183,130,126,0.5),
    0px 0px 24px rgba(206,158,150,0.4),
    0px 12px 6px rgba(0,0,0,0.03),
    0px 8px 5px rgba(0,0,0,0.06),
    0px 4px 4px rgba(0,0,0,0.08),
    0px 1px 2px rgba(0,0,0,0.1);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0px 0px 0px 1px rgba(255,255,255,0.16),
    inset 0px 2px 4px rgba(0,0,0,0.4),
    inset 0px 1px 2px rgba(0,0,0,0.3);
}

.btn-large { padding: 20px 44px; font-size: 13px; }
.btn-small { padding: 12px 24px; font-size: 11px; }

/* ---------- Placeholder image blocks ---------- */
.ph-image {
  position: relative;
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 48%, var(--ph-border) 49%, var(--ph-border) 51%, transparent 52%);
  background-size: 26px 26px;
  opacity: 0.35;
}
.ph-label {
  position: relative;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A39A97;
  background: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 30px;
}

.ph-portrait { aspect-ratio: 4 / 5; border-radius: 6px 6px 0 100px; }
.ph-portrait-lg { aspect-ratio: 3 / 4; border-radius: 6px 6px 0 140px; }
.ph-tall { aspect-ratio: 4 / 5; border-radius: 4px; }
.ph-wide { aspect-ratio: 21 / 9; border-radius: 4px; margin-top: 64px; }
.ph-carousel { min-width: 280px; aspect-ratio: 3 / 4; border-radius: 4px; scroll-snap-align: start; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 18px 0 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 14px 32px;
  border-radius: 100px;
  background: rgba(11,11,11,0.75);
  border: 1px solid var(--divider);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    max-width 0.5s cubic-bezier(0.16,0.8,0.24,1),
    padding 0.5s cubic-bezier(0.16,0.8,0.24,1),
    margin 0.5s cubic-bezier(0.16,0.8,0.24,1),
    border-radius 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
}

.site-header.is-scrolled .header-inner {
  max-width: min(900px, 92vw);
  padding: 10px 26px;
  border-radius: 100px;
  background: rgba(11,11,11,0.85);
  border: 1px solid var(--divider);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner .btn { flex-shrink: 0; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 34px; width: auto; display: block; flex-shrink: 0; }
.site-header .logo img { height: 54px; transition: height 0.45s cubic-bezier(0.16,0.8,0.24,1); }
.site-header.is-scrolled .logo img { height: 34px; }
.site-header.is-scrolled .logo {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.site-header.is-scrolled .logo:hover {
  transform: scale(1.08);
}
.footer-brand .logo img { height: 64px; }
.footer-brand .logo { display: inline-flex; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.footer-brand .logo:hover { transform: scale(1.08); }

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 32px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #C7C0BD;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:hover { color: var(--rose); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 80px 0 0; }

.hero-kinetic-grid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
}

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

.hero-content { position: relative; z-index: 1; max-width: 540px; min-width: 0; }

.hero-cta-mobile { display: none; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.24;
  color: var(--white);
  margin-bottom: 26px;
}

/* ---------- Flip Words (título do hero) ---------- */
.flip-words {
  position: relative;
  display: inline-block;
  color: var(--rose);
  font-style: italic;
}

.flip-words-current {
  display: inline-block;
  white-space: nowrap;
}

.flip-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.flip-letter.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.flip-words-exit {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  white-space: nowrap;
  color: var(--rose);
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  pointer-events: none;
}
.flip-words-exit.out {
  opacity: 0;
  transform: translate(24px, -26px) scale(1.4);
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .flip-letter, .flip-words-exit { transition: none; }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-media {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  overflow: visible;
  min-width: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}
.hero-blob-1 {
  width: 380px;
  height: 380px;
  top: -10%;
  right: 2%;
  background: var(--rose);
  animation: hero-blob-float-1 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 280px;
  height: 280px;
  bottom: 4%;
  left: -2%;
  background: #F1D6D2;
  animation: hero-blob-float-2 11s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 220px;
  height: 220px;
  top: 38%;
  right: -6%;
  background: var(--rose-dark);
  animation: hero-blob-float-3 7.5s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes hero-blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.08; }
  50% { transform: translate(-18px, 22px) scale(1.08); opacity: 0.45; }
}
@keyframes hero-blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  50% { transform: translate(20px, -16px) scale(0.94); opacity: 0.55; }
}
@keyframes hero-blob-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
  50% { transform: translate(-14px, -20px) scale(1.12); opacity: 0.28; }
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-bottom: -64px;
  filter: drop-shadow(0 30px 55px rgba(206,158,150,0.22));
}

.marquee-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: var(--rose);
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 40px;
  padding-right: 40px;
}

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--graphite);
  letter-spacing: 0.02em;
  white-space: nowrap;
  will-change: filter, opacity;
}
.marquee-sep {
  color: rgba(23,23,23,0.5);
  font-size: 11px;
}

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

/* ============================================================
   GALERIA — carrossel automático de fotos
   ============================================================ */
.gallery-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: gallery-scroll 56s linear infinite;
}

.gallery-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;
}
.gallery-photo {
  width: 260px;
  min-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-photo-testimonial {
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
}
.gallery-photo-testimonial img {
  object-fit: contain;
}

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

@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

/* ============================================================
   LIGHTBOX DA GALERIA
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,5,5,0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  max-width: min(600px, 88vw);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lightbox-close:hover { background: var(--rose); border-color: var(--rose); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}
.lightbox-arrow:hover { background: var(--rose); border-color: var(--rose); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 640px) {
  .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-blob-1, .hero-blob-2, .hero-blob-3 { animation: none; }
}

/* ============================================================
   CENÁRIO ATUAL — CARD COM SCROLL (efeito "tablet")
   ============================================================ */
.scroll-card-section { position: relative; overflow: hidden; padding-top: 80px; }

@media (min-width: 768px) {
  .scroll-card-section { padding-top: 130px; }
}

.scroll-card-container {
  position: relative;
  height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}

.scroll-card-perspective {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 0;
  position: relative;
  perspective: 1000px;
}

.scroll-card-header {
  max-width: 720px;
  margin: 0 auto;
  will-change: transform;
}

.pain-list-center {
  max-width: 460px;
  margin: 32px auto 0;
  text-align: left;
}

.scroll-card {
  position: relative;
  max-width: 1000px;
  width: 100%;
  height: 30rem;
  margin: 48px auto 0;
  padding: 8px;
  background: #222222;
  border: 4px solid #6C6C6C;
  border-radius: 30px;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  will-change: transform;
  transform-style: preserve-3d;
}

.scroll-card-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.scroll-card-inner .ph-image { height: 100%; width: 100%; border: none; border-radius: 20px; }
.scroll-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scroll-card-zoom 18s ease-in-out infinite alternate;
}

@keyframes scroll-card-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.scroll-card-footer {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 90px;
  text-align: center;
}

@media (max-width: 767px) {
  .container.scroll-card-footer { padding-top: 20px; padding-bottom: 150px; }
}

@media (min-width: 768px) {
  .scroll-card-footer { padding-top: 100px; padding-bottom: 130px; }
}
.scroll-card-footer .pain-list-center { margin-left: auto; margin-right: auto; }
.scroll-card-footer .section-lead { color: rgba(255,255,255,0.88); }
.scroll-card-footer .pain-list li { color: rgba(255,255,255,0.9); font-weight: 500; }

@media (min-width: 768px) {
  .scroll-card-container { height: 50rem; }
  .scroll-card-perspective { padding: 80px 0 0; }
  .scroll-card { height: 34rem; padding: 24px; margin-top: -48px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-card-header, .scroll-card { transition: none; }
}

/* ============================================================
   SPLIT SECTIONS (02, 03)
   ============================================================ */
.alt-bg { position: relative; background: var(--white); }
.alt-bg .eyebrow { color: var(--rose-deep); }
.alt-bg .section-title { color: var(--graphite); }
.alt-bg .section-lead { color: var(--graphite-soft); }
.alt-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: var(--graphite);
  clip-path: polygon(0% 100%, 100% 35%, 100% 100%);
  pointer-events: none;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.anatomy-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.anatomy-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.pain-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #C7C0BD;
}

.pain-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  animation: pain-arrow-nudge 1.6s ease-in-out infinite;
}

@keyframes pain-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.pain-list li:nth-child(2) .pain-arrow { animation-delay: 0.2s; }
.pain-list li:nth-child(3) .pain-arrow { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .pain-arrow { animation: none; }
}

/* ============================================================
   BENEFÍCIOS — BENTO GRID
   ============================================================ */
.bento-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--divider);
  background: var(--graphite);
  transition: transform 0.5s cubic-bezier(0.16,0.8,0.24,1), border-color 0.4s ease, box-shadow 0.5s ease;
}
.bento-card:hover,
.bento-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(206,158,150,0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.bento-card-a { grid-column: span 3; }
.bento-card-b { grid-column: span 2; }

.bento-graphic {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.bento-card-a .bento-graphic { height: 280px; }

.bento-graphic-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
  transform: scale(1.005) translateX(0) translateZ(0);
  transition: transform 6s ease, filter 0.4s ease;
  backface-visibility: hidden;
  will-change: transform;
}
.bento-card:hover .bento-graphic-photo img,
.bento-card.is-active .bento-graphic-photo img {
  transform: scale(1.15) translateX(-4%) translateZ(0);
}

.bento-graphic::before {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform: translate(10px, 46px);
  font-family: var(--font-display);
  font-size: 190px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}
.bento-graphic-photo::before {
  color: rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(206,158,150,0.28), transparent 60%),
    radial-gradient(circle at 85% 70%, rgba(183,130,126,0.2), transparent 60%);
}
.bento-graphic::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(180deg, transparent 30%, var(--graphite) 100%);
  transform: translateZ(0);
}

.bento-card:nth-child(1) .bento-graphic {
  background:
    radial-gradient(circle at 20% 20%, rgba(206,158,150,0.4), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(183,130,126,0.25), transparent 55%),
    #0c0a0a;
}
.bento-card:nth-child(2) .bento-graphic {
  background:
    radial-gradient(circle at 80% 25%, rgba(206,158,150,0.35), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(160,104,103,0.3), transparent 55%),
    #0c0a0a;
}
.bento-card:nth-child(3) .bento-graphic {
  background:
    radial-gradient(circle at 30% 75%, rgba(206,158,150,0.3), transparent 55%),
    #0c0a0a;
}
.bento-card:nth-child(4) .bento-graphic {
  background:
    radial-gradient(circle at 75% 30%, rgba(183,130,126,0.32), transparent 55%),
    #0c0a0a;
}
.bento-card:nth-child(5) .bento-graphic {
  background:
    radial-gradient(circle at 50% 70%, rgba(206,158,150,0.28), transparent 60%),
    #0c0a0a;
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 26px 26px 30px;
}
.bento-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.bento-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.bento-card-a .bento-title { font-size: 25px; }
.bento-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   ANTES / DEPOIS
   ============================================================ */
.beforeafter-section { position: relative; overflow: hidden; }

.beforeafter-pen {
  position: absolute;
  top: 50%;
  width: 520px;
  max-width: 38vw;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.beforeafter-pen-left {
  left: -70px;
  mask-image: linear-gradient(to right, black 0%, black 35%, transparent 88%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 35%, transparent 88%);
}
.beforeafter-pen-right {
  right: -70px;
  mask-image: linear-gradient(to left, black 0%, black 35%, transparent 88%);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 35%, transparent 88%);
}

@media (max-width: 1100px) {
  .beforeafter-pen { display: none; }
}

.img-compare-container {
  margin: 56px auto 0;
  width: 100%;
  max-width: 520px;
}
.img-compare-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.img-compare {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
}
.img-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s ease-out;
}
.compare-tag {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
.compare-tag-before { left: 18px; background: var(--divider); color: #C7C0BD; }
.compare-tag-after { right: 18px; background: var(--rose); color: var(--white); }

.slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 34px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
  transition: left 0.05s ease-out;
}
.slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--graphite);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  pointer-events: none;
}
.img-compare-wrapper.is-dragging .slider-handle { transform: translate(-50%, -50%) scale(1.08); }

/* ============================================================
   PARA QUEM É
   ============================================================ */
.audience-list {
  margin-top: 64px;
  border-top: 1px solid var(--divider);
}
.audience-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--divider);
}
.audience-item span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose);
  font-size: 32px;
  width: 52px;
  transition: color 0.6s ease;
}
.audience-item p {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 500;
  transition: transform 0.6s ease;
}
.audience-item:hover span { color: var(--white); }
.audience-item.is-active span { color: var(--white); }
.audience-item:hover p { transform: translateX(12px); }

.center-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   SOBRE A ESPECIALISTA
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px 6px 0 140px;
  overflow: hidden;
  border: 1px solid var(--divider);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-photo:hover img,
.about-photo.is-active img {
  animation: about-photo-zoom 18s ease-in-out infinite alternate;
}

@keyframes about-photo-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text .section-lead { color: var(--white); margin-bottom: 16px; }
.about-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  line-height: 1.5;
  margin-top: 24px;
}

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--divider);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--rose);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 6px;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials-section { background: var(--graphite); }

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.testimonials-header .section-title { margin-bottom: 0; }

.testimonials-nav { display: flex; gap: 10px; flex-shrink: 0; }
.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.testimonials-arrow:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}
.testimonials-arrow:active { transform: scale(0.94); }

.testimonials-track {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 32px 28px;
  transition: filter 0.45s ease, opacity 0.45s ease, transform 0.8s cubic-bezier(0.16,0.8,0.24,1);
  filter: blur(0);
  opacity: 1;
}
.testimonials-track.is-swapping .testimonial-card {
  filter: blur(10px);
  opacity: 0;
}

.testimonial-quote {
  font-size: 15px;
  color: #D6D0CE;
  line-height: 1.7;
  min-height: 84px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose);
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   A OFERTA
   ============================================================ */
.offer-section { background: var(--graphite); }

.offer-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.offer-includes h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
}

.offer-list { display: flex; flex-direction: column; gap: 14px; }
.offer-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #D6D0CE;
  line-height: 1.6;
}
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 600;
  transition: color 0.6s ease;
}
.offer-list li span {
  display: inline-block;
  transition: transform 0.6s ease;
}
.offer-list li:hover::before { color: var(--white); }
.offer-list li:hover span { transform: translateX(12px); }
.offer-list li.is-active::before { color: var(--white); }
.offer-list li.is-active span { transform: translateX(12px); }

.offer-bonus {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--divider);
  border-radius: 4px;
  background: rgba(206,158,150,0.06);
}
.offer-bonus-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.offer-bonus p { font-size: 14px; color: #D6D0CE; }

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

.offer-price-card {
  isolation: isolate;
  position: relative;
  --border-width: 2px;
  background: rgba(206,158,150,0.06);
  border: var(--border-width) solid transparent;
  border-radius: 4px;
  padding: 30px 28px;
  text-align: center;
  transform: rotate(-1deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.offer-price-card::before {
  content: "";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  border: inherit;
  border-radius: inherit;
  background-image: conic-gradient(from var(--angle), var(--rose) 80%, #ffffff 88%, #ffffff 92%, var(--rose) 100%);
  background-origin: border-box;
  -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: offer-border-spin 3s linear infinite;
  pointer-events: none;
}
.offer-price-card:hover::before { animation-play-state: paused; }

@keyframes offer-border-spin {
  to { --angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-price-card::before { animation: none; }
}

.offer-badge {
  position: absolute;
  top: -18px;
  right: 28px;
  transform: rotate(6deg);
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}
.offer-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}
.offer-price-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.offer-price-old {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: #B9B4B2;
}
.offer-price-strike {
  font-style: normal;
  text-decoration: line-through;
  color: #8A8280;
}
.offer-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-body);
  color: var(--white);
  margin-top: 4px;
}
.offer-price-currency {
  font-size: 28px;
  font-weight: 800;
}
.offer-price-integer {
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.offer-price-cents {
  font-size: 24px;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 8px;
}

.offer-guarantee {
  font-size: 14px;
  color: #5C5552;
  margin-bottom: 26px;
}

.offer-price-card .btn { width: 100%; }

/* ============================================================
   GARANTIA (selo 7 dias)
   ============================================================ */
.guarantee-section { text-align: center; }

.guarantee-seal {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(206,158,150,0.35) 0%, rgba(206,158,150,0) 70%);
  filter: blur(34px);
  z-index: 0;
}
.guarantee-seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: seal-spin 22s linear infinite;
}
.guarantee-seal-dashring {
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  border: 1.5px dashed rgba(206,158,150,0.35);
  z-index: 1;
  animation: seal-spin-reverse 16s linear infinite;
}
.guarantee-seal-core {
  position: relative;
  z-index: 2;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.guarantee-seal-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: var(--rose);
}
.guarantee-seal-label {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.guarantee-text {
  max-width: 460px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .guarantee-seal { width: 280px; height: 280px; margin-bottom: 34px; }
  .guarantee-seal::before { inset: -40px; filter: blur(26px); }
  .guarantee-seal-dashring { inset: 34px; }
  .guarantee-seal-core { width: 168px; height: 168px; }
  .guarantee-seal-number { font-size: 62px; }
  .guarantee-seal-label { font-size: 11px; margin-top: 8px; }
}

@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes seal-spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ============================================================
   CONHEÇA TAMBÉM
   ============================================================ */
.also-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.also-card { text-align: center; }
.also-card .ph-image { margin-bottom: 24px; }
.also-media {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ph-bg);
  border: 1px solid var(--ph-border);
  margin-bottom: 24px;
}
.also-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.also-media:hover img {
  animation: also-media-zoom 14s ease-in-out infinite alternate;
}

@keyframes also-media-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.3); }
}
.also-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}

.corner-btn {
  --border-color: linear-gradient(-45deg, var(--rose), var(--rose-dark), var(--rose-deep));
  --border-width: .125em;
  --curve-size: .5em;
  --bg: #0B0B0B;
  --color: var(--white);
  color: var(--color);
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: .7em 1.8em;
  min-width: 260px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.4);
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms;
}

.corner-btn::after,
.corner-btn::before {
  content: '';
  position: absolute;
  inset: 0;
}

.corner-btn::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: corner-btn-move-bg 5s ease infinite;
  z-index: -2;
}

@keyframes corner-btn-move-bg {
  0% { background-position: 31% 0%; }
  50% { background-position: 70% 100%; }
  100% { background-position: 31% 0%; }
}

.corner-btn::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * .5),
    calc(var(--curve-size) + var(--border-width) * .5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.corner-btn:where(:hover, :focus)::after {
  clip-path: polygon(
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.corner-btn:where(:hover, :focus) {
  color: var(--white);
}

@media (max-width: 768px) {
  .also-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 780px; }

.accordion { margin-top: 56px; border-top: 1px solid var(--divider); }
.accordion-item { border-bottom: 1px solid var(--divider); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 26px 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--rose);
  transition: transform 0.25s ease;
}
.accordion-icon::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
.accordion-icon::after { left: 50%; top: 0; height: 16px; width: 1.5px; transform: translateX(-50%); }

.accordion-item.active .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p {
  padding: 0 4px 26px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 55% 65% at 50% 50%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 55% 65% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.25;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--graphite); color: #C9C3C1; padding: 70px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { margin-top: 14px; font-size: 14px; color: #9C9492; max-width: 260px; }

.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { font-size: 14px; color: #C9C3C1; }
.footer-nav a:hover { color: var(--rose); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.btn-instagram { gap: 9px; }
.btn-instagram svg { flex-shrink: 0; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0 200px;
  font-size: 12px;
  color: #77706E;
}
.footer-credit { color: #77706E; transition: color 0.3s ease; }
.footer-credit:hover { color: var(--rose); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 8px; }
  .hero-content { max-width: 100%; }
  .hero-photo { max-width: 420px; margin: 0 auto -40px; }
  .hero-blob-1 { width: 260px; height: 260px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { width: 160px; height: 160px; }
  .split-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card-a, .bento-card-b { grid-column: span 1; }
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .header-inner {
    max-width: 92vw;
    margin: 0 auto;
    gap: 10px;
    padding: 8px 16px;
  }
  .site-header { padding-top: 12px; }
  .site-header .logo img { height: 30px; }
  .btn-small { padding: 9px 14px; font-size: 9.5px; }
  .hero { padding-top: 28px; }
  .hero-content { text-align: center; }
  .hero-content .btn { display: none; }
  .hero-grid { gap: 4px; padding-bottom: 0; }
  .hero-photo {
    aspect-ratio: 0.92;
    object-fit: cover;
    object-position: top;
    margin: 0 auto -4px;
  }
  .hero-cta-mobile {
    display: inline-flex;
    position: absolute;
    left: 50%;
    bottom: 11%;
    z-index: 2;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 130px);
    transition: opacity 1s cubic-bezier(0.16,0.8,0.24,1), transform 1s cubic-bezier(0.16,0.8,0.24,1);
  }
  .hero-cta-mobile.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .scroll-card-section { padding-top: 110px; }
  .scroll-card-perspective { padding: 0; }
  .scroll-card { margin-top: -50px; }

  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--graphite);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
  }
  .main-nav.open { max-height: 400px; border-bottom: 1px solid var(--divider); }
  .main-nav a { padding: 16px 22px; border-bottom: 1px solid var(--divider); }

  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .marquee-item { font-size: 16px; }
  .marquee-set { gap: 28px; padding-right: 28px; }

  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-graphic, .bento-card-a .bento-graphic { height: 200px; }
  .audience-item p { font-size: 19px; }

  .audience-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .audience-item span { transition: color 1.6s ease; }

  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .testimonials-track { grid-template-columns: 1fr; gap: 16px; }
  .stats-row { flex-wrap: wrap; justify-content: center; gap: 28px; text-align: center; }
  .offer-price-card { padding: 28px 24px; }
  .offer-price-integer { font-size: 64px; }
  .footer-inner { grid-template-columns: 1fr; border-bottom: none; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .container.footer-legal { padding: 26px 22px 40px; }
  .final-cta { padding: 90px 0; }

  .about-section { padding-top: 36px; }
  .audience-section { padding-bottom: 30px; }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    text-align: center;
  }
  .footer-contact { align-items: center; margin-top: 12px; }
  .pb-container { display: none; }
}

/* ============================================================
   DESFOQUE PROGRESSIVO (rodapé fixo)
   ============================================================ */
.pb-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 9;
  pointer-events: none;
}

.pb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: none;
}

.blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blur-1 {
  z-index: 1;
  backdrop-filter: blur(0.25px);
  -webkit-backdrop-filter: blur(0.25px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 25%, rgba(0,0,0,0) 37.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%, rgba(0,0,0,1) 25%, rgba(0,0,0,0) 37.5%);
}
.blur-2 {
  z-index: 2;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 12.5%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 37.5%, rgba(0,0,0,0) 50%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 12.5%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 37.5%, rgba(0,0,0,0) 50%);
}
.blur-3 {
  z-index: 3;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 37.5%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 62.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 37.5%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 62.5%);
}
.blur-4 {
  z-index: 4;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 37.5%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 62.5%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 37.5%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 62.5%, rgba(0,0,0,0) 75%);
}
.blur-5 {
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 62.5%, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 87.5%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 62.5%, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 87.5%);
}
.blur-6 {
  z-index: 6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 62.5%, rgba(0,0,0,1) 75%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 62.5%, rgba(0,0,0,1) 75%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,0) 100%);
}
.blur-7 {
  z-index: 7;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 87.5%, rgba(0,0,0,1) 100%);
}
.blur-8 {
  z-index: 8;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 87.5%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 87.5%, rgba(0,0,0,1) 100%);
}

/* ============================================================
   PONTEIRO CUSTOMIZADO
   ============================================================ */
@media (min-width: 600px) and (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .btn, input, textarea, select, [role="button"] { cursor: none; }
}

.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--white);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
