/* ============================================================
   NILVADO CARDOSO — DESIGN SYSTEM: DARK LUXURY
   Paleta: preto profundo + dourado elegante
   Tipografia: Fraunces (display serif) + Jost (corpo) + JetBrains Mono (labels)
   ============================================================ */

:root {
  --black: #0D0D0D;
  --black-deep: #080807;
  --surface: #15130F;
  --surface-raised: #1A1712;
  --line: rgba(200, 169, 107, 0.16);
  --line-strong: rgba(200, 169, 107, 0.32);

  --gold: #C8A96B;
  --gold-light: #E8DCC4;
  --gold-soft: rgba(200, 169, 107, 0.08);

  --ivory: #F5F2EC;
  --stone: #9C968A;
  --stone-dim: #6B665C;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Jetbrains Mono", monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--black);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 0;
}

/* ============================================================
   TEXTURE / AMBIENCE
   ============================================================ */

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 30%;
  transition: left 0.5s var(--ease-slow), top 0.5s var(--ease-slow);
  will-change: left, top;
}

@media (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 860px;
}

.section {
  position: relative;
  padding: 160px 0;
  z-index: 3;
}

@media (max-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .container {
    padding: 0 24px;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 28px;
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
}

.section-head-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-head-center .eyebrow {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-lead {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 560px;
}

.section-head-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 30px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a07d3a 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black-deep);
  border: none;
  position: relative;
  overflow: hidden;
  animation: shimmer 3s ease infinite, glow-pulse 2.5s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
  z-index: 1;
}

.btn-primary svg {
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover,
.btn-primary:active {
  box-shadow: 0 0 80px rgba(200, 169, 107, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--black-deep);
}

.btn-primary:hover svg,
.btn-primary:active svg {
  transform: translateX(4px);
}

.btn-large {
  padding: 22px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  box-shadow: 0 0 50px rgba(200, 169, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: shimmer 4s ease infinite;
}

.btn-large::before {
  animation: shine 4s ease-in-out infinite;
}

.btn-large:hover,
.btn-large:active {
  box-shadow: 0 0 70px rgba(200, 169, 107, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--line-strong);
  padding: 12px 24px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.15), transparent);
  animation: shine 2s ease-in-out infinite;
  z-index: 1;
}

.btn-ghost:hover,
.btn-ghost:active {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 30px rgba(200, 169, 107, 0.2);
}

.btn-hero {
  background: linear-gradient(135deg, var(--gold) 0%, #a07d3a 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black-deep);
  border: none;
  padding: 20px 44px;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 13px;
  border-radius: 0;
  box-shadow: 0 0 40px rgba(200, 169, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: shimmer 3s ease infinite, glow-pulse 2.5s ease-in-out infinite;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
  z-index: 1;
}

.btn-hero:hover,
.btn-hero:active {
  box-shadow: 0 0 80px rgba(200, 169, 107, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--black-deep);
}

.btn-hero:hover svg,
.btn-hero:active svg {
  transform: translateX(4px);
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(200, 169, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  50% {
    box-shadow: 0 0 60px rgba(200, 169, 107, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.link-underline {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--stone);
  position: relative;
  padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease), color 0.4s var(--ease);
}

.link-underline:hover,
.link-underline:active {
  color: var(--gold-light);
  background-size: 100% 1px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 26px 0;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 16px 0;
  background: rgba(13, 13, 13, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.site-header.nav-open {
  background: var(--black-deep);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.main-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
  margin-right: 38px;
  align-items: center;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  transition: color 0.3s var(--ease);
  position: relative;
}

.main-nav a:hover,
.main-nav a:active {
  color: var(--gold-light);
}

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

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black-deep);
    border-top: 1px solid var(--line);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
    z-index: 100;
  }

  .main-nav.is-open {
    max-height: 420px;
  }

  .main-nav a {
    padding: 18px 32px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-cta {
    display: inline-flex;
    margin: 20px 32px;
    justify-content: center;
    color: var(--black-deep) !important;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.10) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
}

.portrait-frame-small {
  max-width: 420px;
}

.portrait-frame-edge {
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

.portrait-photo {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  overflow: hidden;
  background: var(--surface);
}

.portrait-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 13, 13, 0.55) 100%);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .portrait-photo img {
  object-position: center 35% !important;
}

.portrait-frame-small .portrait-photo img {
  object-position: center 20%;
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
}

.portrait-caption-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-light);
}

.portrait-caption-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--stone-dim);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-dim);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: scrollDrop 2.6s var(--ease) infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(330%);
  }
}

@media (max-width: 1000px) {
  .hero {
    align-items: flex-start;
    padding-top: 350px;
    padding-bottom: 0;
  }

  .section-identify {
    border-top: 1px solid var(--line);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    position: static;
  }

  .hero-copy {
    padding: 0 32px;
    position: relative;
    z-index: 10;
  }

  .hero-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-visual .portrait-frame {
    aspect-ratio: auto;
    max-width: none;
    height: 100%;
    border: none;
    margin: 0;
  }

  .hero-visual .portrait-frame-edge {
    display: none;
  }

  .hero-visual .portrait-photo {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-visual .portrait-photo img {
    object-position: center bottom !important;
  }

  .hero-visual .portrait-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.85) 60%, rgba(13, 13, 13, 0.2) 100%);
    z-index: 2;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .portrait-caption {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   SEÇÃO IDENTIFICAÇÃO — ACHE GRID
   ============================================================ */

.section-identify {
  background: var(--black);
}

.ache-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--black);
  border: 1px solid var(--line);
}

.ache-card {
  background: var(--black);
  padding: 44px 36px;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ache-card:nth-child(2n) {
  border-right: none;
}

.ache-card:nth-child(n+3) {
  border-bottom: none;
}

.ache-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.ache-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 169, 107, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.ache-card:hover,
.ache-card:active {
  background: var(--surface-raised);
  box-shadow: 0 0 40px -10px rgba(200, 169, 107, 0.12), inset 0 1px 0 rgba(200, 169, 107, 0.1);
}

.ache-card:hover::before,
.ache-card:active::before {
  opacity: 1;
}

.ache-card:hover::after,
.ache-card:active::after {
  opacity: 1;
}

.ache-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone-dim);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.4s var(--ease);
  transform: translateX(0);
}

.ache-card:hover .ache-num,
.ache-card:active .ache-num {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

.ache-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}

.ache-card:hover h3,
.ache-card:active h3 {
  color: var(--gold-light);
}

.ache-card p {
  font-size: 15px;
  color: var(--stone-dim);
  line-height: 1.75;
  font-weight: 300;
  transition: color 0.4s var(--ease);
}

.ache-card:hover p,
.ache-card:active p {
  color: var(--stone);
}

/* ============================================================
   CTA LUXURY — BOTÃO PREMIUM
   ============================================================ */

.section-identify-cta {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.cta-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, #a07d3a 50%, var(--gold) 100%);
  background-size: 200% 200%;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(200, 169, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: shimmer 3s ease infinite, glow-pulse 2.5s ease-in-out infinite;
  transition: transform 0.4s var(--ease);
}

.cta-luxury-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

.cta-luxury:hover,
.cta-luxury:active {
  background: linear-gradient(135deg, var(--gold) 0%, #a07d3a 50%, var(--gold) 100%);
  background-size: 200% 200%;
  box-shadow: 0 0 70px rgba(200, 169, 107, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-luxury-text {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black-deep);
  font-weight: 500;
}

.cta-luxury-arrow {
  color: var(--black-deep);
  transition: transform 0.4s var(--ease);
}

.cta-luxury:hover .cta-luxury-arrow {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .ache-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ache-grid {
    grid-template-columns: 1fr;
  }

  .ache-card {
    padding: 36px 24px;
    border-right: none;
  }

  .ache-card:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   SEÇÃO TERAPIA — TRANSFORM GRID
   ============================================================ */

.section-therapy {
  background: linear-gradient(180deg, var(--black) 0%, var(--surface) 30%, var(--surface) 70%, var(--black) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.section-therapy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(200, 169, 107, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-therapy>.container {
  position: relative;
  z-index: 1;
}

.transform-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.transform-item {
  text-align: center;
  padding: 44px 28px 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
}

.transform-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.transform-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 169, 107, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.transform-item:hover,
.transform-item:active {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  box-shadow: 0 0 40px -10px rgba(200, 169, 107, 0.12), inset 0 1px 0 rgba(200, 169, 107, 0.1);
}

.transform-item:hover::before,
.transform-item:active::before {
  opacity: 1;
}

.transform-item:hover::after,
.transform-item:active::after {
  opacity: 1;
}

.transform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.transform-item:hover .transform-icon,
.transform-item:active .transform-icon {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -4px rgba(200, 169, 107, 0.35);
}

.transform-icon svg {
  width: 28px;
  height: 28px;
}

.transform-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}

.transform-item:hover h3,
.transform-item:active h3 {
  color: var(--gold);
}

.transform-item p {
  font-size: 14.5px;
  color: var(--stone-dim);
  line-height: 1.75;
  font-weight: 300;
  max-width: 280px;
  margin: 0 auto;
  transition: color 0.4s var(--ease);
}

.transform-item:hover p,
.transform-item:active p {
  color: var(--stone);
}

@media (max-width: 900px) {
  .transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .transform-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */

.section-about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.about-copy .section-title {
  margin-bottom: 28px;
}

.about-text {
  font-size: 16.5px;
  color: var(--stone);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 22px;
  max-width: 540px;
}

.credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.credential-value {
  font-size: 15px;
  color: var(--ivory);
  font-weight: 300;
  line-height: 1.5;
}

.about-cta {
  margin-top: 48px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .about-visual .portrait-frame {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    min-height: 470px;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .about-cta {
    display: flex;
    justify-content: center;
  }
}

/* ============================================================
   SEÇÃO PROCESSO — TIMELINE
   ============================================================ */

.section-process {
  background: linear-gradient(180deg, var(--black) 0%, var(--surface) 30%, var(--surface) 70%, var(--black) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  position: relative;
  margin-top: 88px;
  padding-left: 64px;
}

.timeline-track {
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}

.timeline-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height 0.2s linear;
}

.timeline-step {
  position: relative;
  padding-bottom: 76px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -64px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  z-index: 2;
}

.timeline-step.is-active .timeline-node {
  border-color: var(--gold);
  box-shadow: 0 0 22px -2px rgba(200, 169, 107, 0.55);
}

.timeline-node span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
  padding-top: 8px;
}

.timeline-content p {
  font-size: 15.5px;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

@media (max-width: 600px) {
  .timeline {
    padding-left: 50px;
  }

  .timeline-track {
    left: 17px;
  }

  .timeline-node {
    left: -50px;
    width: 36px;
    height: 36px;
  }

  .timeline-node span {
    font-size: 11px;
  }
}

/* ============================================================
   FAIXA DE AUTORIDADE — STATS
   ============================================================ */

.section-stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 169, 107, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 56px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-plus {
  font-size: 32px;
  color: var(--gold);
  vertical-align: super;
  font-weight: 300;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--line-strong);
  flex-shrink: 0;
}

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

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* ============================================================
   FAQ — ACCORDION
   ============================================================ */

.section-faq {
  background: var(--black);
}

.accordion {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0;
  transition: background 0.35s var(--ease);
}

.accordion-item:hover,
.accordion-item:focus-within {
  background: rgba(200, 169, 107, 0.04);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 30px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ivory);
  transition: color 0.35s var(--ease);
}

.accordion-trigger:hover,
.accordion-trigger:active {
  color: var(--gold-light);
}

.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion-panel p {
  padding: 0 24px 30px;
  font-size: 15.5px;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.section-final-cta {
  position: relative;
  background: var(--black-deep);
  text-align: center;
  overflow: hidden;
  padding: 200px 0;
}

.section-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/foto cta final.jpg") center/cover no-repeat;
  opacity: 0.45;
  z-index: 0;
}

.section-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black-deep) 0%, rgba(8, 8, 7, 0.7) 30%, rgba(8, 8, 7, 0.7) 70%, var(--black-deep) 100%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-glow {
  display: none;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.24;
  color: var(--ivory);
  margin-bottom: 28px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--gold);
}

.final-cta-lead {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 46px;
  font-weight: 400;
}

.final-cta-note {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--stone-dim);
}

@media (max-width: 768px) {
  .section-final-cta {
    padding: 140px 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}

.footer-inner {
  width: 100%;
}

.footer-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  padding-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-role,
.footer-modality {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.5;
}

.footer-role {
  margin-top: 4px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--stone);
}

.footer-list svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--stone);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-bottom: 32px;
  }

  .footer-col {
    align-items: center;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
  animation: whatsapp-beat 1.5s ease-in-out infinite, whatsapp-ring 2s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:active {
  transform: scale(1.15);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsapp-beat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes whatsapp-ring {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   RESPONSIVE FIXES — 768px ATÉ 1000px
   ============================================================ */


@media (min-width: 760px) and (max-width: 780px) {

  .hero-title {
    font-size: clamp(54.3px, 7vw, 40px) !important;
  }

  .hero {
    padding-top: 400px !important;
  }
}

@media (min-width: 900px) and (max-width: 1030px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black-deep);
    border-top: 1px solid var(--line);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
    z-index: 100;
  }

  .main-nav.is-open {
    max-height: 420px;
  }

  .main-nav a {
    padding: 18px 32px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-cta {
    display: inline-flex;
    margin: 20px 32px;
    justify-content: center;
    color: var(--black-deep) !important;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 530px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    position: static;
  }

  .hero-copy {
    padding: 0 32px;
    position: relative;
    z-index: 10;
  }

  .hero-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-visual .portrait-frame {
    aspect-ratio: auto;
    max-width: none;
    height: 100%;
    border: none;
    margin: 0;
  }

  .hero-visual .portrait-frame-edge {
    display: none;
  }

  .hero-visual .portrait-photo {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-visual .portrait-photo img {
    object-position: center bottom !important;
  }

  .hero-visual .portrait-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.85) 60%, rgba(13, 13, 13, 0.2) 100%);
    z-index: 2;
  }

  .portrait-caption {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-title {
    font-size: 75px;
  }
}

@media (min-width: 760px) and (max-width: 860px) {
  .hero {
    padding-top: 460px;
  }

  .hero-title {
    font-size: 60px;
  }
}

/* Shared tablet styles (760px — 1030px) */
@media (min-width: 760px) and (max-width: 1030px) {
  .hero-subtitle {
    font-size: 22px;
  }

  .btn-hero {
    padding: 28px 64px;
    font-size: 17px;
  }

  .link-underline {
    font-size: 16px;
  }

  .section-title {
    font-size: clamp(48px, 6.2vw, 70px);
  }

  .final-cta-title {
    font-size: clamp(54px, 6.8vw, 78px);
  }

  .final-cta-lead {
    font-size: 20px;
  }

  .final-cta-note {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    text-align: center;
    padding-bottom: 40px;
    align-items: start;
  }

  .footer-col {
    align-items: center;
  }

  .section-lead {
    font-size: 21px;
    max-width: 580px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-head {
    max-width: 100%;
    text-align: center;
  }

  .section-head .eyebrow {
    justify-content: center;
  }

  .ache-card p {
    font-size: 20px;
  }

  .ache-card h3 {
    font-size: 26px;
  }

  .ache-num {
    font-size: 14px;
  }

  .transform-item h3 {
    font-size: 26px;
  }

  .transform-item p {
    font-size: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-visual .portrait-frame {
    max-width: 100%;
    min-height: 700px;
  }

  .about-text {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy .section-title {
    text-align: center;
  }

  .about-copy .eyebrow {
    justify-content: center;
  }

  .credentials {
    text-align: center;
  }

  .about-cta {
    display: flex;
    justify-content: center;
  }

  .credential-label {
    font-size: 14px;
  }

  .credential-value {
    font-size: 19px;
  }

  .timeline-content h3 {
    font-size: 28px;
  }

  .timeline-content p {
    font-size: 20px;
  }

  .accordion-trigger {
    font-size: 24px;
  }

  .accordion-panel p {
    font-size: 18px;
  }

  .footer-role,
  .footer-modality {
    font-size: 16px;
  }

  .footer-list li {
    font-size: 16px;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-brand {
    justify-content: center;
    min-height: 30px;
    margin-bottom: 4px;
  }

  .site-footer {
    padding: 48px 0 0;
  }

  .footer-bottom {
    padding-bottom: 32px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-inner {
    width: 100%;
  }

  .btn-primary {
    padding: 20px 44px;
    font-size: 15px;
  }

  .btn-large {
    padding: 24px 52px;
    font-size: 16px;
  }

  .cta-luxury {
    padding: 24px 64px;
    max-width: 400px;
  }

  .cta-luxury-text {
    font-size: 15px;
  }

  .brand-name {
    font-size: 20px;
  }

  .mobile-nav-cta {
    max-width: 370px;
    font-size: 12px;
    padding: 14px 28px;
    margin: 20px auto;
  }
}

/* ============================================================
   RESPONSIVE FIXES — ≤ 768px
   ============================================================ */

@media (max-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .container {
    padding: 0 24px;
  }

  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 40px;
  }

  .section-final-cta {
    padding: 140px 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .hero-title {
    font-size: clamp(38.3px, 7vw, 40px);
  }

  .final-cta-title {
    font-size: clamp(24px, 6.5vw, 36px);
  }

  .section-final-cta .btn {
    padding: 16px 28px;
    font-size: 12px;
    max-width: 280px;
    width: 100%;
    justify-content: center;
  }

  .about-copy .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .credential-label {
    font-size: 12px;
  }

  .credential-value {
    font-size: 16px;
  }

  .footer-role,
  .footer-modality {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .cta-luxury {
    padding: 14px 28px;
  }

  .cta-luxury-text {
    font-size: 11px;
  }

  .about-cta .btn-primary {
    padding: 14px 24px;
    font-size: 12px;
    max-width: 260px;
    width: 100%;
    justify-content: center;
  }
}