:root {
  --cream: #f0e9da;
  --navy: #0d1b3d;
  --navy-soft: #1c2949;
  --gold: #d4af37;
  --gold-deep: #cfac37;
  --white: #ffffff;
  --text: #313d5a;
  --muted: #646d83;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --manrope: "Manrope", system-ui, sans-serif;
  --radius: 28px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(13, 27, 61, 0.08);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--gold {
  color: var(--gold);
}

.section-kicker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: var(--navy);
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.lead {
  max-width: 640px;
  color: var(--text);
  font-size: 1.05rem;
}

.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 233, 218, 0.35);
}

.btn--full {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo img {
  width: 95px;
  height: auto;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}

.nav .menu,
.nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu a,
.nav ul a {
  color: inherit;
  text-decoration: none;
}

.nav a:hover,
.nav .menu a:hover,
.nav ul a:hover {
  color: var(--gold-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
}

.hero,
.significado,
.circulo,
.presenca,
.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}

.hero {
  padding: 72px 0 96px;
}

.hero__star,
.cta__star {
  position: absolute;
  pointer-events: none;
}

.hero__star {
  top: 0px;
  left: 0%;
  width: 90px;
}

.hero__grid,
.faq__grid {
  display: grid;
  gap: 56px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
}

.hero__lead,
.significado p,
.circulo .lead,
.cta p {
  color: rgba(240, 233, 218, 0.78);
}

.waitlist {
  max-width: 520px;
  margin-top: 36px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(240, 233, 218, 0.7);
}

.field input {
  width: 100%;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  outline: none;
}

.field input:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note,
.form-feedback {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: rgba(240, 233, 218, 0.62);
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  color: #f0c4c4;
}

.waitlist .wpcf7-form > p {
  margin: 0 0 14px;
  text-align: left;
}

.waitlist .wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(240, 233, 218, 0.7);
}

.waitlist .wpcf7-form-control-wrap {
  display: block;
}

.waitlist input[type="text"],
.waitlist input[type="email"],
.waitlist input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0d1b3d;
  outline: none;
}

.waitlist input[type="text"]:focus,
.waitlist input[type="email"]:focus,
.waitlist input[type="tel"]:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

.waitlist input.wpcf7-submit,
.waitlist .btn.wpcf7-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #d4af37;
  color: #0d1b3d;
  font-weight: 500;
  cursor: pointer;
}

.waitlist .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: 0 !important;
  color: rgba(240, 233, 218, 0.8);
}

.waitlist .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #f0c4c4;
}

.waitlist--cta .wpcf7-form {
  display: grid;
  gap: 14px;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.wpcf7 .hidden-fields-container {
  display: none;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 16px;
  border-radius: 50%;
  background: rgba(240, 233, 218, 0.35);
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7 [inert] {
  opacity: 0.5;
}

.photo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px dashed rgba(212, 175, 55, 0.28);
}

.photo-frame--hero {
  min-height: 560px;
  border-radius: 36px;
}

.photo-frame--card {
  aspect-ratio: 4 / 5;
  background: #f4f4f6;
  border: 1px dashed #d4af37;
  border-radius: 24px;
}

.photo-frame__label {
  position: absolute;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(240, 233, 218, 0.55);
  text-align: center;
  padding: 0 16px;
}

.photo-frame--card .photo-frame__label {
  color: #8a8f9c;
}

.photo-frame img {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 72px;
  opacity: 0.9;
}

.photo-frame--hero .photo-frame__image,
.photo-frame--wide .photo-frame__image,
.photo-frame--card img {
  position: absolute;
  inset: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
}

.problema,
.pilares,
.clinico,
.educacao,
.faq {
  padding: 96px 0;
}

.problema h2,
.pilares h2,
.clinico h2 {
  max-width: 760px;
}

.problema__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 36px 0 56px;
  color: var(--text);
}

.stat-grid,
.pillar-grid,
.team-grid,
.plan-grid,
.meaning-grid {
  display: grid;
  gap: 20px;
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card,
.pillar-card,
.doctor-card,
.meaning-card,
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card,
.pillar-card {
  padding: 28px 26px 24px;
}

.stat-card {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--gold);
}

.stat-card p.stat-card__value {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0;
  text-align: left;
  color: #d4af37;
}

.stat-card p:not(.stat-card__value):not(.stat-card__source),
.pillar-card p,
.doctor-card p {
  color: var(--text);
  font-size: 0.95rem;
}

.stat-card p.stat-card__source {
  margin-top: 18px;
  font-family: var(--manrope);
  font-weight: 400;
  font-size: 13px;
  line-height: 18.2px;
  letter-spacing: 0;
  text-align: left;
  color: #0d1b3d;
}

.significado {
  padding: 110px 0;
  text-align: center;
}

.significado__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 78%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.significado h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.meaning-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  text-align: left;
}

.meaning-card {
  background: #111f45;
  padding: 36px 32px 32px;
  border: 1px solid #d4af37;
  box-shadow: none;
}

.meaning-card p.meaning-card__letter {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  color: #d4af37;
}

.meaning-card p.meaning-card__letter::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 14px;
  background: #d4af37;
}

.meaning-card h3 {
  color: var(--cream);
}

.meaning-card p {
  margin: 0;
}

.significado p.significado__close {
  max-width: 640px;
  margin: 40px auto 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0;
  text-align: center;
  color: #f0e9da;
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.pillar-card:nth-child(4),
.pillar-card:nth-child(5) {
  grid-column: span 1;
}

.pillar-grid::after {
  content: "";
  display: none;
}

.pillar-card__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--gold);
}

.pillar-card__icon svg {
  width: 100%;
  height: 100%;
}

.band {
  background: var(--navy);
  padding: 72px 0;
}

.band__line {
  display: block;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto;
  background: var(--gold);
}

.clinico .lead {
  margin-bottom: 48px;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid .doctor-card:nth-child(7),
.team-grid .doctor-card:nth-child(8) {
  justify-self: stretch;
}

.doctor-card {
  overflow: hidden;
  padding: 20px 20px 24px;
}

.doctor-card__body {
  padding: 16px 4px 0;
}

.doctor-card h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.doctor-card p.doctor-card__role {
  margin: 0;
  font-size: 0.88rem;
  color: #d4af37;
}

.doctor-card p.doctor-card__crm {
  margin: 4px 0 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.circulo {
  padding: 110px 0;
  text-align: center;
}

.badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: #ece6f8;
  color: #5a4b86;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  text-align: left;
}

.plan-card {
  background: #111f45;
  padding: 36px 32px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: none;
  color: var(--cream);
}

.plan-card h3 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.plan-card__intro {
  color: rgba(240, 233, 218, 0.72);
}

.plan-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: rgba(240, 233, 218, 0.86);
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 48px;
}

.content-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card--lilac {
  align-items: flex-start;
  background: #ece6f8;
  box-shadow: none;
  padding: 36px 32px;
}

.photo-frame--square {
  flex: 0 0 168px;
  width: 168px;
  height: 168px;
  background: #f4f4f6;
  border: 1px dashed rgba(13, 27, 61, 0.12);
  border-radius: 20px;
}

.photo-frame--square .photo-frame__label {
  color: #8a8f9c;
}

.content-card__label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.content-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.content-card p {
  margin: 0;
  color: var(--text);
}

.presenca {
  padding: 96px 0;
}

.presenca h2 {
  max-width: 760px;
  margin-bottom: 36px;
}

.photo-frame--wide {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: 28px;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  background: var(--navy-soft);
}

.presenca .btn {
  display: inline-flex;
}

.faq {
  background: var(--cream);
}

.faq__grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.faq__list details {
  border-top: 1px solid rgba(212, 175, 55, 0.45);
}

.faq__list details:last-child {
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0;
  text-align: left;
  color: #0d1b3d;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.faq__list details[open] summary::after {
  content: "−";
}

.faq__list details p {
  margin: 0 0 22px;
  color: var(--text);
}

.cta {
  padding: 100px 0 80px;
  text-align: center;
}

.cta__star {
  right: 6%;
  bottom: 8%;
  width: 80px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta__icon {
  width: 56px;
  height: auto;
  margin: 0 auto 20px;
}

.cta .waitlist {
  max-width: none;
}

.field-row--cta {
  grid-template-columns: repeat(3, 1fr);
}

.cta__tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta__tagline::before,
.cta__tagline::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.footer {
  padding: 72px 0 40px;
  background: #08122b;
  color: var(--cream);
}

.footer .logo img {
  filter: brightness(0) invert(92%) sepia(8%) saturate(280%) hue-rotate(5deg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__brand p {
  max-width: 260px;
  margin: 18px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(240, 233, 218, 0.72);
}

.footer__col p {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 233, 218, 0.55);
}

.footer__col a {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__legal {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gold);
}

.footer__legal p {
  margin: 0 0 8px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(240, 233, 218, 0.62);
}

@media (max-width: 980px) {
  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--cream);
    border-top: 1px solid rgba(13, 27, 61, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .nav .menu,
  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav .menu a,
  .nav ul a {
    display: block;
    padding: 12px 0;
  }

  .hero__grid,
  .problema__cols,
  .meaning-grid,
  .plan-grid,
  .content-grid,
  .faq__grid,
  .field-row,
  .field-row--cta {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .hero__main {
    display: contents;
  }

  .hero__copy {
    order: 1;
  }

  .hero__media {
    order: 2;
  }

  .hero__main > .waitlist {
    order: 3;
    max-width: none;
  }

  .content-card {
    flex-direction: column;
    align-items: stretch;
  }

  .content-card .photo-frame--square {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .stat-grid,
  .pillar-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame--hero {
    min-height: 420px;
  }

  .hero,
  .significado,
  .circulo,
  .presenca,
  .cta,
  .problema,
  .pilares,
  .clinico,
  .educacao,
  .faq {
    padding: 72px 0;
  }

  .circulo {
    text-align: left;
  }

  .circulo .lead--center {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

@media (min-width: 981px) {
  .pillar-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .pillar-card {
    grid-column: span 2;
  }

  .pillar-card:nth-child(4),
  .pillar-card:nth-child(5) {
    grid-column: span 2;
  }

  .pillar-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .team-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .doctor-card {
    grid-column: span 2;
  }

  .doctor-card:nth-child(7) {
    grid-column: 2 / span 2;
  }
}

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

  .btn {
    transition: none;
  }
}
