:root {
  --ink: #16031c;
  --plum: #2b0135;
  --plum-2: #3d074a;
  --night: #09010d;
  --gold: #d3af37;
  --gold-soft: #f1d77b;
  --rose: #f7e7ef;
  --paper: #fffaf3;
  --white: #ffffff;
  --muted: #d8c9dc;
  --green: #19b40c;
  --green-dark: #0f8706;
  --line: rgba(211, 175, 55, 0.28);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 2, 17, 0.88);
  border-bottom: 1px solid rgba(211, 175, 55, 0.18);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: grid;
  gap: 0;
  letter-spacing: 0;
}

.brand strong {
  color: var(--gold-soft);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-links a {
  color: #f7ecfb;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
}

.hero,
.page-hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero {
  min-height: 86vh;
}

.hero::before,
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 1, 14, 0.96) 0%, rgba(43, 1, 53, 0.84) 48%, rgba(10, 1, 14, 0.6) 100%),
    var(--hero-image, url("https://camiladilela.com/wp-content/uploads/2025/09/fundo-de-mandala-dourado-e1758744863963.png")) center / cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after,
.page-hero::after {
  background: radial-gradient(circle at 78% 28%, rgba(211, 175, 55, 0.22), transparent 26%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-inner,
.page-hero-inner,
.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 22px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  min-height: 86vh;
  padding-bottom: 72px;
  padding-top: 72px;
}

.page-hero-inner {
  max-width: 920px;
  padding-bottom: 96px;
  padding-top: 96px;
  text-align: center;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  color: var(--gold-soft);
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  color: #fff3c6;
  font-size: 28px;
}

p {
  margin: 0;
}

.lead {
  color: #f4e9f7;
  font-size: 19px;
  max-width: 720px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 28px rgba(25, 180, 12, 0.24);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--gold-soft);
}

.portrait-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.portrait-panel img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portrait-caption {
  background: linear-gradient(180deg, transparent, rgba(9, 1, 13, 0.92));
  bottom: 0;
  left: 0;
  padding: 34px 24px 22px;
  position: absolute;
  right: 0;
}

.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.stat strong {
  color: var(--gold-soft);
  display: block;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

section {
  padding: 84px 0;
}

.band-plum {
  background:
    linear-gradient(180deg, rgba(43, 1, 53, 0.96), rgba(22, 3, 28, 0.98)),
    url("https://camiladilela.com/wp-content/uploads/2025/09/fundo-de-mandala-dourado-e1758744863963.png") center / cover fixed;
}

.band-dark {
  background: #0d0212;
}

.band-light {
  background: var(--paper);
  color: var(--ink);
}

.band-light h2 {
  color: var(--plum);
}

.band-light h3 {
  color: var(--plum);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
  max-width: 840px;
}

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

.muted {
  color: var(--muted);
}

.band-light .muted {
  color: #5d4a63;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.band-light .card {
  background: #fff;
  border-color: rgba(43, 1, 53, 0.12);
  box-shadow: 0 14px 34px rgba(43, 1, 53, 0.08);
}

.card p,
.card li {
  color: #efe4f4;
}

.band-light .card p,
.band-light .card li {
  color: #514057;
}

.icon-mark {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  display: inline-flex;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  margin-bottom: 16px;
  width: 42px;
}

.therapy-card {
  display: grid;
  gap: 18px;
}

.therapy-feature {
  display: grid;
  gap: 34px;
}

.therapy-list-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 0;
}

.therapy-list-card img,
.course-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.therapy-list-card-content,
.course-card-content {
  display: grid;
  gap: 14px;
  padding: 0 24px 24px;
}

.therapy-list-card .therapy-meta {
  margin-top: 4px;
}

.course-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 0;
}

.course-card .therapy-meta {
  margin-top: 4px;
}

.therapy-feature-media {
  background: #fff;
  border: 1px solid rgba(211, 175, 55, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(43, 1, 53, 0.14);
  overflow: hidden;
}

.therapy-feature-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.therapy-copy {
  display: grid;
  gap: 18px;
}

.therapy-copy p {
  color: #49364f;
  font-size: 16px;
}

.therapy-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-item {
  background: #fff;
  border: 1px solid rgba(43, 1, 53, 0.1);
  border-radius: 8px;
  padding: 18px;
}

.summary-item b {
  color: var(--plum);
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.summary-item span {
  color: #49364f;
  display: block;
  font-weight: 600;
}

.therapy-meta {
  display: grid;
  gap: 10px;
}

.therapy-meta span {
  border-top: 1px solid rgba(211, 175, 55, 0.18);
  color: #fff1bd;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.band-light .therapy-meta span {
  color: var(--plum);
}

.list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.feature-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.blog-card {
  min-height: 100%;
}

.blog-card .category {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 25px;
  margin: 10px 0 12px;
}

.article {
  background: var(--paper);
  color: var(--ink);
}

.article .section-inner {
  max-width: 840px;
}

.article h2 {
  color: var(--plum);
  margin-top: 34px;
}

.article p {
  color: #49364f;
  margin-top: 18px;
}

.app-screen {
  background: linear-gradient(180deg, #4b0958, #1b0223);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 560px;
  padding: 18px;
}

.phone-ui {
  background: #fffaf3;
  border-radius: 20px;
  color: var(--ink);
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 24px;
}

.phone-ui .bar {
  background: #e8d7ea;
  border-radius: 999px;
  height: 10px;
}

.phone-ui .tile {
  background: #f4edf5;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px;
}

.app-identity {
  align-items: center;
  display: flex;
  gap: 18px;
}

.app-icon {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(43, 1, 53, 0.18);
  height: 92px;
  width: 92px;
}

.app-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-showcase img {
  background: #fff;
  border: 1px solid rgba(43, 1, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(43, 1, 53, 0.08);
  width: 100%;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(43, 1, 53, 0.12);
  border-radius: 8px;
  padding: 24px;
}

.pricing-card strong {
  color: var(--plum);
  display: block;
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.1;
}

.pricing-card span {
  color: #5d4a63;
}

.contact-box {
  background: linear-gradient(135deg, #2b0135, #100116);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  padding: 28px;
}

.contact-box h2 {
  color: var(--gold-soft);
}

.contact-box .muted,
.contact-box li {
  color: #efe4f4;
}

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

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(211, 175, 55, 0.24);
  border-radius: 6px;
  color: var(--white);
  font: inherit;
  padding: 14px 15px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

::placeholder {
  color: #baa8c0;
}

.footer {
  background: #070009;
  border-top: 1px solid rgba(211, 175, 55, 0.18);
  color: #c9b9ce;
  padding: 34px 22px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal a {
  color: #f1d77b;
  font-size: 13px;
}

.legal-content {
  background: var(--paper);
  color: var(--ink);
}

.legal-content .section-inner {
  max-width: 880px;
}

.legal-content h2 {
  color: var(--plum);
  margin-top: 34px;
}

.legal-content p,
.legal-content li {
  color: #49364f;
}

.legal-content p {
  margin-top: 16px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.small {
  font-size: 13px;
}

@media (max-width: 920px) {
  .menu-toggle {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--gold-soft);
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    padding: 8px 12px;
  }

  .nav-links {
    background: rgba(13, 2, 17, 0.98);
    border-top: 1px solid var(--line);
    display: none;
    flex-basis: 100%;
    padding: 12px 0 4px;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .hero-inner,
  .split,
  .therapy-summary,
  .app-showcase,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 54px;
  }

  .portrait-panel {
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  section {
    padding: 64px 0;
  }

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

  .btn {
    width: 100%;
  }
}
