:root {
  --green: #0f2f1d;
  --green-deep: #071f14;
  --green-bright: #2f955d;
  --gold: #c19036;
  --gold-light: #ffdea0;
  --rose: #eee3df;
  --mist: #f2f2f2;
  --slate: #40545f;
  --white: #fff;
  --ink: #102119;
  --display: "STIX Two Text", Georgia, serif;
  --body: "Poppins", Arial, sans-serif;
  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(4rem, 5.5vw, 5.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .65rem .9rem;
  background: var(--gold-light);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  height: 76px;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: height .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(7,31,20,.96);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}
.brand__name { font-family: var(--display); font-size: 1.22rem; }
.brand__meta {
  margin-top: .34rem;
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .72;
}
.nav { display: flex; gap: clamp(1rem, 2vw, 2rem); font-size: .67rem; font-weight: 400; }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.45rem;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta {
  justify-self: end;
  padding: .58rem .9rem;
  border: 1px solid rgba(255,222,160,.55);
  font-size: .65rem;
  font-weight: 500;
}
.menu-toggle, .mobile-menu { display: none; }

.section { padding: var(--section-space) var(--pad); }
.section[id] { scroll-margin-top: 64px; }
.section h2 { font-size: clamp(2.5rem, 3.8vw, 4rem); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .78rem 1.3rem;
  font-size: .7rem;
  font-weight: 500;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--green-deep);
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 12px 28px rgba(193,144,54,.2);
}
.button--gold::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 190%;
  aspect-ratio: 1;
  background: conic-gradient(
    transparent 0 38%,
    rgba(255,222,160,.28) 44%,
    var(--gold-light) 49%,
    #fff3cf 50%,
    var(--gold-light) 51%,
    rgba(255,222,160,.28) 56%,
    transparent 62% 100%
  );
  animation: moving-gold-border 3.4s linear infinite;
}
.button--gold::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(100deg, #b98125, var(--gold-light) 48%, var(--gold));
  transition: filter .3s ease;
}
.button--gold span {
  position: relative;
  z-index: 1;
}
.button--gold:hover {
  box-shadow: 0 16px 34px rgba(193,144,54,.32);
}
.button--gold:hover::after { filter: brightness(1.06); }
@keyframes moving-gold-border {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(1turn); }
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .15rem;
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-size: .72rem;
}
.link-arrow span { transition: transform .3s ease; }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--dark { border-color: rgba(15,47,29,.35); }

.hero {
  position: relative;
  min-height: min(800px, 96svh);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 7.5rem var(--pad) 2.5rem;
  color: var(--white);
  background: var(--green-deep);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 33%, rgba(47,149,93,.16), transparent 27%),
    radial-gradient(circle at 24% 28%, rgba(193,144,54,.1), transparent 30%),
    linear-gradient(0deg, rgba(4,22,13,.42) 0%, transparent 30%),
    linear-gradient(110deg, #071f14 0%, #0c291a 52%, #0f2f1d 76%, #071f14 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 76px 1.5rem 1.5rem;
  border: 1px solid rgba(255,222,160,.2);
  pointer-events: none;
}
.hero__photo {
  position: absolute;
  z-index: 1;
  inset: 76px 1.5rem 1.5rem 42%;
  overflow: hidden;
  background: url("assets/images/dra-sabrina-hero-2189-recorte.webp") right bottom/auto 122% no-repeat;
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(90deg, transparent 72%, rgba(7,31,20,.12) 84%, rgba(7,31,20,.52) 96%, #071f14 100%),
    linear-gradient(0deg, rgba(7,31,20,.2), transparent 18%);
  pointer-events: none;
}
.hero__title {
  position: absolute;
  z-index: 2;
  inset: 17% auto auto var(--pad);
  width: 48%;
  margin: 0;
  font-size: clamp(3.65rem, 4.4vw, 5.45rem);
  line-height: .78;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}
.hero__title-line--two { margin: .04em 0 0; }
.hero__title-line--three {
  margin: .08em 0 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.72);
}
.hero__copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--pad);
  width: min(430px, 100%);
}
.hero__copy > p {
  max-width: 440px;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(.96rem, 1vw, 1.05rem);
  line-height: 1.6;
}
.hero__actions { display: flex; align-items: center; gap: 1.4rem; }
.hero__crm {
  position: absolute;
  z-index: 6;
  right: 2.5rem;
  bottom: 2.3rem;
  margin: 0;
  font-size: .54rem;
  letter-spacing: .17em;
  writing-mode: vertical-rl;
}

@media (min-width: 701px) {
  .hero__title,
  .hero__copy {
    left: clamp(5.5rem, 7vw, 7.5rem);
  }
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.1rem, 2vw, 2rem);
  align-items: start;
  padding-top: clamp(3rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--rose);
}
.about::after,
.program::after,
.location::before,
.value::after,
.reviews::before,
.faq::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(760px, 58vw);
  aspect-ratio: 5/3;
  pointer-events: none;
  color: var(--green);
  background: currentColor;
  -webkit-mask: url("assets/images/brand-flow-lines.svg") center/contain no-repeat;
  mask: url("assets/images/brand-flow-lines.svg") center/contain no-repeat;
  opacity: .07;
}
.about > *,
.program > *,
.location > *,
.value > *,
.reviews > *,
.faq > * {
  position: relative;
  z-index: 1;
}
.about::after {
  right: -12%;
  bottom: -14%;
  transform: rotate(-5deg);
}
.about__title {
  grid-column: 7/13;
  grid-row: 1;
  align-self: end;
  padding-top: 1rem;
}
.about__title h2 { max-width: 720px; margin-bottom: .35rem; }
.about__portrait {
  position: relative;
  isolation: isolate;
  grid-column: 1/6;
  grid-row: 1/3;
  height: 100%;
  min-height: 620px;
  background: url("assets/images/dra-sabrina-sobre-2440.webp") center 42%/cover no-repeat;
  box-shadow: 22px 22px 0 rgba(15,47,29,.11);
}
.about__portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 22px 22px -18px;
  border: 1px solid rgba(193,144,54,.72);
}
.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 -100px 110px rgba(7,31,20,.12);
  pointer-events: none;
}
.about__text {
  grid-column: 7/13;
  grid-row: 2;
  max-width: 690px;
}
.about__text .lead {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.45vw, 2.5rem);
  line-height: 1.18;
}
.about__story {
  display: grid;
  gap: .65rem;
  max-width: 650px;
  margin-top: .85rem;
}
.about__story p {
  margin: 0;
  color: var(--slate);
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}
.about__story strong {
  color: var(--green);
  font-weight: 600;
}
.about__cta { margin-top: 1.15rem; }
.value {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2.6rem);
  overflow: hidden;
  padding-top: clamp(2.8rem, 3.8vw, 3.8rem);
  padding-bottom: clamp(2.8rem, 3.8vw, 3.8rem);
  color: var(--white);
  background: var(--green);
}
.value::after {
  right: -7%;
  bottom: -24%;
  color: var(--gold-light);
  opacity: .105;
  transform: rotate(5deg);
}
.value__statement { grid-column: 7/13; grid-row: 1; }
.value__statement h2 {
  max-width: 680px;
  margin: 0 0 0 auto;
  font-size: clamp(2.65rem, 3.65vw, 3.8rem);
}
.value__manifest {
  grid-column: 1/7;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: .75rem;
  padding-top: .25rem;
}
.value__manifest p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.55;
}
.value__manifest strong {
  color: var(--gold-light);
  font-weight: 500;
}
.value__scope {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.65rem 0 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  list-style: none;
}
.value__scope li {
  display: flex;
  align-items: center;
  padding: .72rem .8rem .72rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.5vw, 1.48rem);
}

.program {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 2vw, 2rem) clamp(1.5rem, 3vw, 3.5rem);
  padding-top: clamp(3.2rem, 4.5vw, 4.5rem);
  padding-bottom: clamp(3.2rem, 4.5vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 38%, rgba(193,144,54,.08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fbf8f5 100%);
}
.program::after {
  right: -9%;
  top: 5%;
  transform: rotate(8deg);
}
.program__header {
  grid-column: 1/8;
  padding-bottom: .4rem;
}
.program__header h2 {
  position: static;
  max-width: 760px;
  margin-bottom: 0;
}
.program__steps {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15,47,29,.16);
  border-radius: 22px;
  background: rgba(15,47,29,.16);
}
.program-step {
  position: relative;
  display: block;
  min-height: 390px;
  padding: clamp(1.45rem, 2.2vw, 2.2rem);
  border: 0;
  background: #f8f5f2;
  transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}
.program-step::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: clamp(2rem, 3vw, 3.4rem);
  background: var(--gold);
  transition: width .35s var(--ease), background .35s ease;
}
.program-step:hover {
  z-index: 1;
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}
.program-step:hover::before { width: 76px; background: var(--gold-light); }
.program-step h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}
.program-step p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(.94rem, 1vw, 1.02rem);
  line-height: 1.6;
  transition: color .35s ease;
}
.program-step__copy {
  display: grid;
  gap: .85rem;
}
.program-step__copy strong {
  color: var(--green);
  font-weight: 600;
}
.program-step:hover p { color: rgba(255,255,255,.78); }
.program-step:hover .program-step__copy strong { color: var(--gold-light); }
.program__included {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem clamp(1.5rem, 3vw, 3.5rem);
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15,47,29,.2);
}
.program__included-intro {
  grid-column: 1/9;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 2rem;
}
.program__included-intro h3 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.4vw, 3.7rem);
}
.program__included-intro p {
  max-width: 430px;
  margin: 0 0 .25rem;
  color: var(--slate);
  font-size: clamp(.95rem, 1vw, 1.02rem);
  line-height: 1.6;
}
.program__included-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: .7rem 0 0;
  padding: 0;
  perspective: 1500px;
  list-style: none;
}
.program__included-list li {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  min-height: 275px;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 1rem;
  padding: 1.45rem;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255,222,160,.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,222,160,.13), transparent 30%),
    linear-gradient(145deg, #1b4a30 0%, var(--green) 50%, var(--green-deep) 100%);
  box-shadow: 0 15px 30px rgba(7,31,20,.12);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
}
.program__included-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.24), transparent 34%);
  transition: opacity .35s ease;
  pointer-events: none;
}
.program__included-list li::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,222,160,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255,222,160,.025), 0 0 0 42px rgba(255,222,160,.018);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.program__included-list li:hover {
  z-index: 2;
  border-color: rgba(255,222,160,.48);
  box-shadow: 0 24px 45px rgba(7,31,20,.24);
}
.program__included-list li:hover::before { opacity: 1; }
.program__included-list li:hover::after { transform: rotate(35deg) scale(1.08); }
.program__included-list li > div {
  position: relative;
  z-index: 1;
  align-self: end;
  transform: translateZ(34px);
}
.program__included-list h4 {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.08;
}
.program__included-list p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  line-height: 1.7;
}
.program__cta {
  grid-column: 6/13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.program__cta p { max-width: 380px; margin: 0; font-size: .78rem; }
.program__cta .button { flex: none; }

.reviews {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-top: clamp(2.6rem, 4vw, 4rem);
  padding-bottom: clamp(2.6rem, 4vw, 4rem);
  color: var(--white);
  overflow: hidden;
  background: var(--green-deep);
}
.reviews::before {
  left: -11%;
  bottom: -14%;
  color: var(--gold-light);
  opacity: .075;
  transform: scaleX(-1) rotate(-3deg);
}
.reviews__heading {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  text-align: left;
}
.reviews__heading h2 { margin-bottom: .55rem; font-size: clamp(2.15rem, 3.2vw, 3.35rem); }
.reviews__heading > p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.86rem, .9vw, .98rem);
}
.reviews__external {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  margin: 0;
  padding: clamp(1.1rem, 1.8vw, 1.45rem);
  border: 1px solid rgba(255,222,160,.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  text-align: center;
  transition: border-color .35s ease, background .35s ease, transform .35s var(--ease);
}
.reviews__external span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
}
.reviews__external small {
  margin-top: .5rem;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  line-height: 1.55;
}
.reviews__external:hover {
  border-color: rgba(255,222,160,.58);
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  transform: translateY(-3px);
}

.location {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) 1.35fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(193,144,54,.1), transparent 25%),
    var(--mist);
}
.location::before {
  left: -13%;
  bottom: -20%;
  opacity: .05;
  transform: scaleX(-1) rotate(5deg);
}
.location__info { padding: clamp(1rem, 2vw, 2rem) 0; }
.location__info h2 { font-size: clamp(2.5rem, 3.6vw, 3.8rem); }
.location__info > p { max-width: 520px; color: var(--slate); font-size: .82rem; }
.location__map { height: 460px; background: var(--white); }
.location iframe { width: 100%; height: 100%; border: 0; filter: saturate(.45) contrast(.95); }

.faq {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  color: var(--green-deep);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(193,144,54,.07), transparent 24%),
    var(--mist);
}
.faq::before {
  right: -13%;
  top: -12%;
  color: var(--green);
  opacity: .055;
  transform: rotate(11deg);
}
.faq__heading {
  grid-column: 1/5;
  grid-row: 1;
}
.faq__heading h2 {
  position: sticky;
  top: 105px;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}
.faq__heading p {
  position: sticky;
  top: 275px;
  max-width: 330px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.65;
}
.faq__heading a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(15,47,29,.35);
  text-underline-offset: 4px;
}
.faq__list {
  grid-column: 5/13;
  grid-row: 1;
  display: grid;
  gap: 10px;
}
.faq details {
  overflow: hidden;
  border: 1px solid rgba(15,47,29,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 28px rgba(15,47,29,.045);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.faq details[open] {
  border-color: rgba(193,144,54,.5);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15,47,29,.08);
}
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 1rem 3.5rem 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--body);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: translateY(-68%) rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(193,144,54,.32);
  border-radius: 50%;
  background: rgba(255,222,160,.34);
}
.faq__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq details p {
  max-width: 720px;
  margin: 0;
  padding: 0 3.5rem 1.3rem 4.95rem;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem var(--pad);
  color: var(--white);
  background: var(--green-deep);
}
.final-cta__photo {
  position: absolute;
  inset: 0;
  background:
    url("assets/images/dra-sabrina-cta-2392.webp") right 30%/auto 185% no-repeat,
    var(--green-deep);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,31,20,.99) 0%, rgba(7,31,20,.9) 45%, rgba(7,31,20,.55) 70%, rgba(7,31,20,.12) 100%);
}
.final-cta__copy { position: relative; z-index: 1; max-width: 700px; }
.final-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 3.9vw, 4.1rem);
}

.instagram {
  color: var(--white);
  background: #09100d;
}
.instagram__heading {
  width: min(100%, 1180px);
  margin: 0 auto clamp(2rem, 3.5vw, 3.25rem);
}
.instagram__heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}
.instagram .reveal.is-visible { opacity: 1; transform: none; }
.instagram-profile {
  display: grid;
  grid-template-columns: 190px minmax(0, 650px);
  justify-content: center;
  gap: 2.8rem;
  max-width: 980px;
  margin: 0 auto 2.5rem;
}
.instagram-profile__avatar {
  width: 170px;
  height: 170px;
  align-self: center;
  padding: 5px;
  border-radius: 50%;
  background: conic-gradient(#ff3040, #d300c5, #ff3040, #ffb000, #ff3040);
}
.instagram-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #09100d;
  border-radius: 50%;
}
.instagram-profile__info { min-width: 0; }
.instagram-profile__name {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.instagram-profile__name h2 {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.04em;
}
.instagram-profile__name > a,
.instagram-profile__button {
  padding: .55rem .9rem;
  border-radius: 7px;
  background: #252a2e;
  font-size: .66rem;
  font-weight: 500;
}
.instagram-profile__profession { margin: .2rem 0 .7rem; font-size: .78rem; }
.instagram-profile__stats {
  display: flex;
  gap: 1.7rem;
  margin: 0 0 .8rem;
}
.instagram-profile__stats div { display: flex; gap: .35rem; }
.instagram-profile__stats dt { order: 2; font-size: .72rem; }
.instagram-profile__stats dd { order: 1; margin: 0; font-size: .76rem; font-weight: 600; }
.instagram-profile__bio { max-width: 580px; color: rgba(255,255,255,.78); font-size: .72rem; line-height: 1.55; }
.instagram-profile__bio p { margin-bottom: .2rem; }
.instagram-profile__button {
  display: inline-flex;
  justify-content: center;
  min-width: 190px;
  margin-top: .9rem;
  background: var(--green);
}
.instagram-highlights {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.3rem);
  max-width: 1000px;
  margin: 0 auto 2rem;
  overflow: hidden;
}
.instagram-highlights a {
  display: flex;
  width: 88px;
  flex: 0 0 88px;
  align-items: center;
  flex-direction: column;
  gap: .55rem;
  font-size: .6rem;
  font-weight: 500;
  text-align: center;
}
.instagram-highlights a > span {
  display: block;
  width: 76px;
  height: 76px;
  padding: 3px;
  border: 2px solid #33413a;
  border-radius: 50%;
}
.instagram-highlights img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.instagram-tabs {
  display: flex;
  justify-content: center;
  gap: 7rem;
  max-width: 1100px;
  height: 52px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.17);
}
.instagram-tabs > span {
  position: relative;
  display: grid;
  width: 42px;
  height: 52px;
  grid-template-columns: repeat(3, 4px);
  place-content: center;
  gap: 3px;
  color: rgba(255,255,255,.5);
}
.instagram-tabs > span.is-active { color: var(--white); }
.instagram-tabs > span.is-active::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  background: var(--white);
}
.instagram-tabs i { width: 4px; height: 4px; background: currentColor; }
.instagram-tabs svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  gap: 4px;
}
.instagram-post {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  min-height: 0;
  overflow: hidden;
  background: var(--green);
}
.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s ease;
}
.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,31,20,.76), transparent 48%);
  opacity: .45;
  transition: opacity .4s ease;
}
.instagram-post > span {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: .66rem;
  transform: translateY(.5rem);
  opacity: 0;
  transition: opacity .35s ease, transform .35s var(--ease);
}
.instagram-post:hover img { transform: scale(1.045); filter: saturate(.88); }
.instagram-post:hover::after { opacity: .85; }
.instagram-post:hover > span { transform: none; opacity: 1; }

.footer {
  padding: 3.5rem var(--pad) 1.5rem;
  color: rgba(255,255,255,.58);
  background: var(--green-deep);
  font-size: .64rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1.2fr .8fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.brand--footer { color: var(--white); }
.footer__main > p { max-width: 430px; }
.footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer nav a, .footer nav button {
  padding: 0;
  border: 0;
  color: var(--white);
  background: none;
  cursor: pointer;
  font-size: .64rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-left: auto;
  color: rgba(255,255,255,.72);
  font-size: .58rem;
  letter-spacing: .04em;
  transition: color .3s ease;
}
.footer__credit img {
  width: 46px;
  height: 32px;
  object-fit: contain;
}
.footer__credit:hover { color: var(--white); }
.whatsapp-float {
  position: fixed;
  z-index: 25;
  right: clamp(1rem, 2vw, 1.7rem);
  bottom: clamp(1rem, 2vw, 1.7rem);
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 12px 30px rgba(7,31,20,.28);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 27px; fill: var(--white); }

.cookie-banner {
  position: fixed;
  z-index: 40;
  left: 1.25rem;
  bottom: 1.25rem;
  width: min(520px, calc(100% - 2.5rem));
  padding: 1rem;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid rgba(255,222,160,.3);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: .8rem; font-size: .7rem; }
.cookie-banner a { text-decoration: underline; }
.cookie-banner div { display: flex; gap: .5rem; }
.cookie-banner button {
  padding: .5rem .7rem;
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: .64rem;
}
.cookie-banner button:last-child {
  color: var(--green-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes breathe { to { transform: scale(1.035); } }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav, .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { display: block; width: 23px; height: 1px; background: currentColor; transition: .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 29;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    padding: 6rem var(--pad) 2.5rem;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: var(--green-deep);
    transform: translateY(-1rem);
    transition: .3s ease;
  }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu a {
    padding: .35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: var(--display);
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  }
  .hero__copy { grid-column: 1/6; width: min(430px, 100%); }
  .about__title { grid-column: 1/-1; grid-row: auto; padding-top: 0; }
  .about__title h2 { max-width: 650px; margin-bottom: .5rem; }
  .about__portrait { grid-column: 1/5; grid-row: auto; min-height: 500px; }
  .about__text { grid-column: 5/13; grid-row: auto; }
  .value__statement { grid-column: 1/6; }
  .value__manifest { grid-column: 6/13; }
  .program__header,
  .program__steps,
  .program__included-intro { grid-column: 1/-1; }
  .program__cta { grid-column: 5/13; }
  .program__included-intro { grid-template-columns: 1.15fr .85fr; }
  .program__included-list { grid-template-columns: repeat(2, 1fr); }
  .program__cta { align-items: flex-start; flex-direction: column; }
  .reviews__heading { max-width: 700px; }
  .reviews__heading h2 { max-width: 760px; }
  .location { grid-template-columns: .9fr 1.1fr; }
  .faq__heading { grid-column: 1/5; grid-row: auto; }
  .faq__list { grid-column: 5/13; grid-row: auto; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  :root { --section-space: 3.4rem; }
  .site-header { height: 68px; }
  .site-header.is-scrolled { height: 60px; }
  .section h2 { font-size: clamp(2.45rem, 10vw, 3.35rem); }
  .about::after,
  .program::after,
  .location::before,
  .value::after,
  .reviews::before,
  .faq::before {
    width: 125vw;
    opacity: .055;
  }
  .value::after,
  .reviews::before,
  .faq::before { opacity: .075; }
  .hero {
    min-height: 760px;
    grid-template-columns: 1fr;
    padding: 6.5rem var(--pad) 2rem;
  }
  .hero::after { inset: 68px .8rem .8rem; }
  .hero__photo {
    inset: 68px .8rem .8rem;
    background: url("assets/images/dra-sabrina-hero-2189-recorte.webp") center bottom/auto 92% no-repeat;
  }
  .hero__photo::after {
    display: block;
    background:
      linear-gradient(0deg, rgba(7,31,20,.98) 0%, rgba(7,31,20,.7) 30%, rgba(7,31,20,.06) 66%),
      linear-gradient(90deg, rgba(7,31,20,.46), transparent 45%, rgba(7,31,20,.12));
  }
  .hero__title {
    inset: 15% var(--pad) auto;
    width: calc(100% - (var(--pad) * 2));
    font-size: clamp(2.1rem, 9.2vw, 3rem);
    line-height: .78;
  }
  .hero__title-line--two { margin-top: .04em; }
  .hero__title-line--three {
    margin-top: .12em;
    font-size: .82em;
    letter-spacing: -.055em;
  }
  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    width: 100%;
    padding-right: 1.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
  }
  .hero__copy > p { font-size: .82rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: .8rem; }
  .hero__actions .button { width: 100%; text-shadow: none; }
  .link-arrow { width: max-content; }
  .hero__crm { display: none; }

  .about {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
  .about__title, .about__portrait, .about__text { grid-column: 1; grid-row: auto; }
  .about__title h2 { margin-bottom: 0; }
  .about__portrait {
    height: auto;
    min-height: 460px;
    margin: 0;
    background-position: center 38%;
    box-shadow: 12px 12px 0 rgba(15,47,29,.11);
  }
  .about__portrait::before { inset: -10px 12px 12px -10px; }
  .about__text { padding: 0; }
  .about__text .lead { font-size: clamp(1.55rem, 7vw, 2rem); }
  .value {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .value__statement,
  .value__manifest,
  .value__scope {
    grid-column: 1;
    grid-row: auto;
  }
  .value__statement { order: 1; }
  .value__manifest { order: 2; }
  .value__scope { order: 3; }
  .value__statement h2 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(2.45rem, 11vw, 3.3rem);
    line-height: .98;
  }
  .value__manifest {
    gap: .6rem;
    padding-top: 0;
  }
  .value__manifest p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .value__scope { grid-template-columns: 1fr 1fr; margin-top: .75rem; }
  .value__scope li { font-size: 1.18rem; }

  .program {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
  .program__header, .program__steps, .program__cta { grid-column: 1; }
  .program__header h2 { margin-bottom: 0; }
  .program__steps {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 16px;
  }
  .program-step {
    min-height: 0;
    padding: 1.5rem;
  }
  .program-step::before {
    width: 34px;
    height: 2px;
    margin-bottom: 1.25rem;
  }
  .program-step h3 { font-size: 1.8rem; }
  .program__cta { margin-top: 1.5rem; }
  .program__cta .button { width: 100%; }
  .program__included { grid-template-columns: 1fr; margin-top: .75rem; padding-top: 1.5rem; }
  .program__included-intro, .program__included-list { grid-column: 1; }
  .program__included-intro {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .program__included-intro h3 { font-size: clamp(2.15rem, 9vw, 3rem); }
  .program__included-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .program__included-list li,
  .program__included-list li:nth-child(even),
  .program__included-list li:not(:nth-child(3n + 1)) {
    width: 100%;
    min-width: 0;
    min-height: 290px;
    padding: 1.5rem;
  }
  .program__included-list p { font-size: 1rem; line-height: 1.7; }

  .reviews {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .reviews__heading { max-width: 330px; margin: 0; }
  .reviews__heading h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .reviews__heading > p:last-child { font-size: .88rem; }
  .reviews__external { padding: 1.15rem .9rem; }

  .location { grid-template-columns: 1fr; gap: 1.8rem; }
  .location__info { padding: 0; }
  .location__info h2 { font-size: clamp(2.45rem, 10vw, 3.35rem); }
  .location__map { height: 320px; }

  .faq { grid-template-columns: 1fr; gap: 1.8rem; }
  .faq__heading, .faq__list { grid-column: 1; }
  .faq__heading h2 { position: static; font-size: clamp(2.45rem, 10vw, 3.35rem); }
  .faq__heading p { position: static; margin-bottom: 0; }
  .faq summary {
    min-height: 72px;
    gap: .8rem;
    padding: .9rem 3rem .9rem .9rem;
    font-size: 1.02rem;
  }
  .faq summary::after { top: 50%; right: 1.1rem; }
  .faq__icon { width: 36px; height: 36px; }
  .faq details p {
    padding: 0 1.1rem 1.2rem 4.5rem;
    font-size: .98rem;
  }

  .final-cta { min-height: 400px; padding: 3.5rem var(--pad); }
  .final-cta__photo {
    background-position: 70% 22%;
    background-size: auto 165%;
  }
  .final-cta h2 { font-size: clamp(2.55rem, 10vw, 3.7rem); }
  .instagram { padding-right: 0; padding-left: 0; }
  .instagram__heading {
    width: auto;
    margin: 0 var(--pad) 1.8rem;
  }
  .instagram__heading h2 {
    max-width: 330px;
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
  .instagram-profile {
    grid-template-columns: 92px 1fr;
    gap: 1.1rem;
    margin: 0 var(--pad) 1.8rem;
  }
  .instagram-profile__avatar { width: 88px; height: 88px; padding: 3px; }
  .instagram-profile__avatar img { border-width: 3px; }
  .instagram-profile__name { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .instagram-profile__name h2 { max-width: 210px; overflow: hidden; font-size: 1.15rem; text-overflow: ellipsis; }
  .instagram-profile__profession { font-size: .7rem; }
  .instagram-profile__stats { grid-column: 1/-1; gap: .7rem; justify-content: space-between; }
  .instagram-profile__stats div { align-items: center; flex-direction: column; gap: 0; }
  .instagram-profile__stats dt { font-size: .58rem; }
  .instagram-profile__stats dd { font-size: .7rem; }
  .instagram-profile__bio { grid-column: 1/-1; font-size: .68rem; }
  .instagram-profile__button { width: 100%; min-width: 0; }
  .instagram-highlights {
    justify-content: flex-start;
    gap: .7rem;
    margin: 0 0 1.4rem;
    padding: 0 var(--pad);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .instagram-highlights::-webkit-scrollbar { display: none; }
  .instagram-highlights a { width: 72px; flex-basis: 72px; font-size: .53rem; }
  .instagram-highlights a > span { width: 64px; height: 64px; }
  .instagram-tabs { gap: 5rem; height: 46px; }
  .instagram-tabs > span { height: 46px; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .instagram-post > span { display: none; }
  .footer__main { grid-template-columns: 1fr; gap: 1.3rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .footer__credit { margin: .35rem 0 0; }
  .whatsapp-float { width: 52px; height: 52px; }
}

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