/* =========================================================
   SANDRA RIBEIRO — PSICÓLOGA
   Tokens
========================================================= */
:root {
  --plum-900: #3a2126;
  --plum-800: #4a2a32;
  --plum-700: #5c3641;
  --plum-600: #7a4b57;
  --rose-400: #c9a79b;
  --rose-300: #d9bfb4;
  --rose-200: #e8d8cf;
  --rose-100: #f1e4dc;
  --cream-50: #fbf6f2;
  --gold-400: #c79a5c;
  --gold-300: #ddb97c;
  --ink-900: #2b1d20;
  --ink-600: #5c4a4e;
  --ink-400: #8b767a;
  --white: #ffffff;

  --font-display: "Fraunces", serif;
  --font-script: "Petit Formal Script", cursive;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@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 {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--plum-900);
  font-weight: 600;
  line-height: 1.12;
}
p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-600);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--plum-700);
  font-size: 1.08em;
}

.section {
  padding: clamp(72px, 10vw, 140px) 24px;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold-400);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.eyebrow.center {
  text-align: center;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
}
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  max-width: 640px;
  margin-bottom: 8px;
}
.lead.center {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
  color: var(--white);
  box-shadow: 0 10px 30px -12px rgba(74, 42, 50, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -12px rgba(74, 42, 50, 0.65);
}
.btn-primary i {
  color: #25d366;
  font-size: 1.2em;
}
.btn-ghost {
  background: transparent;
  color: var(--plum-800);
  border-color: var(--rose-400);
}
.btn-ghost:hover {
  background: var(--rose-100);
  transform: translateY(-3px);
}

/* =========================================================
   Preloader
========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 38%,
    var(--plum-700) 0%,
    var(--plum-900) 62%,
    #241318 100%
  );
  overflow: hidden;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
}
.preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader.preloader-hidden .preloader-content {
  transform: translateY(-14px) scale(1.03);
  transition: transform 0.9s var(--ease);
}

.preloader::before {
  /* textura sutil de vinheta para profundidade */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;
}

.preloader-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(221, 185, 124, 0.16) 0%,
    rgba(221, 185, 124, 0) 70%
  );
  animation: pl-glow-pulse 3.2s ease-in-out infinite;
}

@keyframes pl-glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.preloader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ---- Anel + logo ---- */
.preloader-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
  opacity: 0;
  animation: pl-fade 0.6s var(--ease) forwards 0.05s;
}
.ring-track {
  fill: none;
  stroke: rgba(232, 216, 207, 0.14);
  stroke-width: 1.5;
}
.ring-progress {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 389.6;
  stroke-dashoffset: 389.6;
  transition: stroke-dashoffset 0.35s var(--ease);
}

.preloader-logo {
  width: 70px;
  height: 70px;
  color: var(--rose-100);
  overflow: visible;
  position: relative;
  z-index: 1;
}
.preloader-logo .pl-stem {
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: pl-stem-in 0.5s var(--ease) forwards 0.1s;
}
.preloader-logo .pl-arm {
  opacity: 0;
  transform: scale(0.85);
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: pl-arm-in 0.45s var(--ease) forwards 0.4s;
}
.preloader-logo .pl-arm-right {
  animation-delay: 0.55s;
}

@keyframes pl-arm-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pl-stem-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pl-butterfly {
  opacity: 0;
  transform: scale(0.3) rotate(-8deg);
  transform-box: fill-box;
  transform-origin: center;
  animation: pl-bloom 0.6s var(--ease) forwards 1.25s;
}

@keyframes pl-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pl-bloom {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ---- Texto ---- */
.preloader-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
  color: var(--rose-100);
  letter-spacing: 0.14em;
  display: flex;
  gap: 0.4em;
}
.pl-word {
  opacity: 0;
  letter-spacing: 0.5em;
  filter: blur(3px);
  animation: pl-track-in 0.8s var(--ease) forwards 1.55s;
}
.pl-word-em {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--gold-300);
  animation-delay: 1.68s;
}
@keyframes pl-track-in {
  to {
    opacity: 1;
    letter-spacing: normal;
    filter: blur(0);
  }
}

.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-300);
  opacity: 0;
  animation: pl-fade 0.8s var(--ease) forwards 2s;
}

@keyframes pl-fade {
  to {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .preloader-ring-wrap {
    width: 118px;
    height: 118px;
  }
  .preloader-ring {
    width: 118px;
    height: 118px;
  }
  .preloader-logo {
    width: 58px;
    height: 58px;
  }
  .preloader-text {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-ring {
    opacity: 1;
    animation: none;
  }
  .preloader-logo .pl-stem {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .preloader-logo .pl-arm {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .pl-butterfly {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .pl-word {
    opacity: 1;
    letter-spacing: normal;
    filter: none;
    animation: none;
  }
  .preloader-tagline {
    opacity: 1;
    animation: none;
  }
  .preloader-glow {
    animation: none;
  }
}

/* =========================================================
   Progress bar + Nav
========================================================= */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-400), var(--plum-700));
  z-index: 1000;
  transition: width 0.1s linear;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 24px;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 246, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -12px rgba(58, 33, 38, 0.18);
  padding: 12px 24px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--plum-700);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--plum-900);
}
.brand-text em {
  font-style: normal;
  font-family: var(--font-script);
  color: var(--gold-400);
  font-size: 1.15em;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-600);
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--plum-800);
}
.nav-links a.nav-cta {
  background: var(--plum-800);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  transition:
    background 0.3s,
    transform 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1.3;
}
.nav-links a.nav-cta:hover {
  background: var(--plum-900);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--plum-900);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.3s;
}
.nav-toggle.open span {
  background: var(--white);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    height: 100vh;
    background: var(--plum-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    color: var(--rose-100);
    font-size: 1.15rem;
  }
  .nav-links a:hover {
    color: var(--white);
  }
  .nav-cta {
    background: var(--gold-400);
    color: var(--plum-900);
  }
}

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 24px 90px;
  overflow: hidden;
}
.hero-arcs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.arc {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}
.arc-back {
  width: 1400px;
  height: 1400px;
  bottom: -1120px;
  background: radial-gradient(
    circle at 50% 30%,
    var(--rose-200),
    var(--rose-300) 70%
  );
  opacity: 0.9;
}
.arc-front {
  width: 1050px;
  height: 1050px;
  bottom: -900px;
  background: radial-gradient(
    circle at 50% 20%,
    var(--plum-600),
    var(--plum-800) 75%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-title {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-credentials {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-credentials li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum-800);
}
.hero-credentials i {
  color: var(--gold-400);
}

.hero-mark {
  position: absolute;
  z-index: 1;
  opacity: 0.85;
  width: min(46vw, 420px);
  bottom: 2%;
  right: 2%;
  pointer-events: none;
}
.hero-butterfly {
  width: 100%;
  height: auto;
  color: var(--white);
}
.hero-butterfly .wing {
  fill: rgba(255, 255, 255, 0.06);
  stroke: var(--white);
  stroke-width: 3;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation:
    draw 2.2s var(--ease) forwards 0.3s,
    flap 4.5s ease-in-out infinite 2.6s;
  transform-origin: 100px 55px;
}
.hero-butterfly .body,
.hero-butterfly .antenna {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: draw 1.4s var(--ease) forwards 1.6s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes flap {
  0%,
  100% {
    transform: rotateY(0deg) scaleX(1);
  }
  50% {
    transform: rotateY(0deg) scaleX(0.86);
  }
}

@media (max-width: 760px) {
  .hero-mark {
    display: none;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--plum-700);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--plum-700);
  border-radius: 3px;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 0;
  }
}

/* =========================================================
   Reveal on scroll
========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
.hero-inner [data-reveal] {
  transition-delay: calc(var(--d, 0) * 1ms);
}

/* =========================================================
   Sobre
========================================================= */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.sobre-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sobre-frame {
  width: 100%;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    155deg,
    var(--rose-200),
    var(--rose-400) 55%,
    var(--plum-700)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sobre-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-lg) - 8px);
}
.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
}
.sobre-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum-800);
  background: var(--rose-100);
  padding: 9px 18px;
  border-radius: 100px;
}
.sobre-stats {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.sobre-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--plum-800);
}
.sobre-stats span {
  font-size: 0.82rem;
  color: var(--ink-400);
  font-weight: 500;
}

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-frame {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* =========================================================
   Atendimento / Stages (metamorphosis)
========================================================= */
.stages {
  position: relative;
  margin-top: 60px;
}
.stages-track {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose-300);
  display: none;
}
.stages-progress {
  height: 100%;
  width: 0%;
  background: var(--gold-400);
  transition: width 0.1s linear;
}

.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  border: 1px solid var(--rose-200);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
  position: relative;
}
.stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -22px rgba(58, 33, 38, 0.28);
  border-color: var(--rose-400);
}
.stage-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-300), var(--plum-700));
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.stage-label {
  position: absolute;
  top: 34px;
  right: 28px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--gold-400);
}
.stage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.stage-card h3 small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-400);
  margin-top: 4px;
}
.stage-card p {
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .stages {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stage-label {
    position: static;
    display: block;
    margin-bottom: 8px;
  }
}

.destaque {
  margin-top: 50px;
  background: linear-gradient(120deg, var(--plum-800), var(--plum-900));
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  color: var(--rose-100);
  box-shadow: 0 24px 50px -26px rgba(58, 33, 38, 0.5);
}
.destaque-icon {
  color: var(--gold-400);
  font-size: 1.6rem;
  margin-top: 4px;
}
.destaque h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.destaque p {
  color: var(--rose-100);
  font-size: 0.96rem;
}
.destaque strong {
  color: var(--gold-300);
}

@media (max-width: 600px) {
  .destaque {
    flex-direction: column;
    padding: 28px;
  }
}

/* =========================================================
   Abordagem
========================================================= */
.abordagem {
  background: var(--rose-100);
}
.abordagem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.abordagem-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}
.abordagem-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.abordagem-list i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.abordagem-list strong {
  display: block;
  color: var(--plum-900);
  font-size: 1.02rem;
  margin-bottom: 3px;
}
.abordagem-list span {
  font-size: 0.9rem;
  color: var(--ink-600);
}

.apostas-list {
  max-width: 640px;
  margin: 34px auto 0;
}

.abordagem-visual {
  display: flex;
  justify-content: center;
}
.cycle-card {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cycle-arrows {
  position: absolute;
  inset: 0;
  color: var(--plum-600);
}
.cycle-item {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--plum-800);
  box-shadow: 0 14px 30px -16px rgba(58, 33, 38, 0.3);
}
.cycle-item:nth-child(1) {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.cycle-item:nth-child(2) {
  bottom: 26px;
  left: -16px;
}
.cycle-item:nth-child(3) {
  bottom: 26px;
  right: -16px;
}

@media (max-width: 900px) {
  .abordagem-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .cycle-card {
    margin: 0 auto;
  }
}

/* =========================================================
   Como funciona
========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.step {
  padding: 8px;
}
.step-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--rose-400);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FAQ
========================================================= */
.faq-inner {
  max-width: 820px;
}
.accordion {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acc-item {
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--plum-900);
}
.acc-trigger i {
  color: var(--gold-400);
  transition: transform 0.35s var(--ease);
}
.acc-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc-panel p {
  padding: 0 24px 22px;
  font-size: 0.94rem;
}

/* =========================================================
   Contato
========================================================= */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.contato-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contato-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
a.contato-row:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 28px -18px rgba(58, 33, 38, 0.3);
  border-color: var(--rose-400);
}
.contato-row i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.contato-row strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum-900);
}
.contato-row span {
  font-size: 0.86rem;
  color: var(--ink-600);
}

.contato-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 24px 50px -26px rgba(58, 33, 38, 0.35);
}
.contato-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

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

/* =========================================================
   Footer
========================================================= */
.footer {
  background: var(--plum-900);
  color: var(--rose-100);
  padding: 56px 24px 30px;
  text-align: center;
}
.footer-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand .brand-mark {
  color: var(--gold-400);
}
.footer-brand em {
  font-style: normal;
  font-family: var(--font-script);
  color: var(--gold-400);
}
.footer p {
  color: var(--rose-200);
  font-size: 0.88rem;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin: 6px 0;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-100);
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.footer-social a:hover {
  background: var(--gold-400);
  color: var(--plum-900);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}
.footer-credit {
  font-size: 0.78rem;
  opacity: 0.75;
}
.footer-credit a {
  color: var(--gold-300);
  font-weight: 600;
}
.footer-credit a:hover {
  text-decoration: underline;
}

/* =========================================================
   WhatsApp float
========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.wa-float i {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
    bottom: 16px;
    right: 16px;
  }
}
