:root {
  --plum: #6e3a8d;
  --plum-dark: #34193e;
  --rose: #b85d7d;
  --clay: #8a563b;
  --sand: #f6eee5;
  --sage: #6f8877;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --ink: #221c24;
  --muted: #6f6670;
  --white: #fffaf6;
  --line: rgba(52, 25, 62, 0.16);
  --shadow: 0 24px 80px rgba(34, 28, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(34, 28, 36, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.hours {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

nav {
  gap: 18px;
  font-size: 0.92rem;
}

nav a {
  opacity: 0.86;
}

nav a:hover {
  opacity: 1;
}

.nav-cta,
.button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--whatsapp-dark);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: 0 16px 34px rgba(110, 58, 141, 0.28);
}

.button.primary.whatsapp-link,
.floating-whatsapp,
.nav-cta.whatsapp-link {
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.28);
}

.whatsapp-link {
  gap: 9px;
}

.whatsapp-link svg {
  flex: 0 0 auto;
  width: 1.18em;
  height: 1.18em;
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button:hover,
.nav-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  padding: 112px 7vw 34px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-janaina.png") 72% center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(34, 28, 36, 0.93) 0%, rgba(52, 25, 62, 0.74) 35%, rgba(52, 25, 62, 0.22) 62%, rgba(34, 28, 36, 0.08) 100%),
    linear-gradient(0deg, rgba(34, 28, 36, 0.58), rgba(34, 28, 36, 0.1) 45%, rgba(34, 28, 36, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding-bottom: 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #f4c5d5;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  line-height: 0.94;
  font-weight: 500;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.event-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.event-strip span {
  padding: 18px;
  background: rgba(34, 28, 36, 0.42);
}

.event-strip strong {
  display: block;
  color: #fff;
}

.section,
.facilitator-band,
.rituals-highlight,
.closing {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.intro p:last-child,
.image-band-copy p,
.facilitator-copy p,
.location-copy p,
.closing p {
  color: var(--muted);
  font-size: 1.08rem;
}

.image-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 0;
  background: #f0e4d8;
}

.image-band figure {
  width: 100%;
  height: 620px;
  margin: 0;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-copy {
  width: min(560px, calc(100% - 36px));
  padding: 76px 0 76px 62px;
}

.facilitator-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1.25fr);
  gap: 34px;
  align-items: center;
  padding: 100px 0;
}

.facilitator-band img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rituals-highlight {
  width: 100%;
  max-width: none;
  padding: 88px max(18px, calc((100vw - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(52, 25, 62, 0.96), rgba(94, 48, 71, 0.92)),
    var(--plum-dark);
}

.rituals-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  background: var(--plum-dark);
}

.rituals-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 25, 62, 0.68), rgba(52, 25, 62, 0.3) 50%, rgba(52, 25, 62, 0.14)),
    linear-gradient(0deg, rgba(34, 28, 36, 0.38), rgba(255, 250, 246, 0.08));
}

.rituals-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rituals-hero h2 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 34px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.34);
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.rituals-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 250, 246, 0.08);
}

.rituals-grid h3 {
  color: #f6d1b7;
}

.rituals-grid p,
.rituals-grid li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.rituals-grid ul {
  margin: 0;
  padding-left: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.schedule-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(34, 28, 36, 0.08);
}

.schedule-card time,
.price-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-card p,
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hours {
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hours div {
  flex: 1;
  min-height: 122px;
  padding: 22px;
  background: var(--sand);
}

.hours strong,
.hours span,
.hours small {
  display: block;
}

.hours span {
  margin: 4px 0;
  color: var(--plum-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.investment {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(246, 238, 229, 0.96), rgba(255, 250, 246, 0.98)),
    var(--sand);
}

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

.event-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.event-options article,
.pix-panel {
  padding: 28px;
  border: 1px solid rgba(52, 25, 62, 0.12);
  border-radius: 8px;
  background: #fff;
}

.event-options span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-options p {
  color: var(--muted);
}

.pix-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  background: var(--plum-dark);
  color: #fff;
}

.pix-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.pix-panel strong {
  display: block;
  margin-top: 12px;
}

.pix-panel img {
  width: 220px;
  border-radius: 8px;
}

.pix-field,
.pix-field span {
  color: #f6d1b7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pix-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.pix-field input {
  max-width: 180px;
  padding: 12px 14px;
  font-weight: 900;
}

.copy-pix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pix-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.price-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(52, 25, 62, 0.12);
  border-radius: 8px;
  background: #fff;
}

.price-card.featured {
  color: #fff;
  background: var(--plum-dark);
}

.price-card.featured span,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 500;
}

.installment {
  padding-top: 18px;
}

.price-card.social {
  background: #f8f4ef;
  border-color: rgba(111, 136, 119, 0.28);
}

.price-card.social a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--plum);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.location-copy {
  padding: 18px 0;
}

.location-copy .button {
  margin-top: 14px;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.closing {
  margin-bottom: 80px;
  padding: 82px 24px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(rgba(52, 25, 62, 0.84), rgba(52, 25, 62, 0.84)),
    url("assets/circulo-feminino.jpg") center / cover no-repeat;
}

.closing p {
  color: rgba(255, 255, 255, 0.84);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    inset: 12px;
    border-radius: 8px;
  }

  nav {
    display: none;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .hero {
    min-height: 780px;
    padding: 106px 18px 24px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(34, 28, 36, 0.92) 0%, rgba(52, 25, 62, 0.7) 52%, rgba(52, 25, 62, 0.2) 100%),
      linear-gradient(0deg, rgba(34, 28, 36, 0.68), rgba(34, 28, 36, 0.08) 46%, rgba(34, 28, 36, 0.36));
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 5.1rem);
  }

  .event-strip,
  .intro,
  .facilitator-band,
  .rituals-grid,
  .schedule-grid,
  .event-options,
  .price-grid,
  .location {
    grid-template-columns: 1fr;
  }

  .event-strip span {
    padding: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band figure {
    height: 420px;
  }

  .image-band-copy {
    width: min(100% - 36px, 560px);
    padding: 58px 0 68px;
  }

  .facilitator-band,
  .rituals-highlight {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .price-card {
    min-height: auto;
  }

  footer {
    display: block;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: static;
    margin: 10px;
    padding: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 34px 18px 20px;
    align-items: start;
    background:
      linear-gradient(90deg, rgba(34, 28, 36, 0.95), rgba(52, 25, 62, 0.72), rgba(52, 25, 62, 0.28)),
      url("assets/hero-janaina.png") 68% center / cover no-repeat;
  }

  .hero-media,
  .hero-overlay {
    display: none;
  }

  .hero-content {
    padding: 22px 0 18px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .event-strip {
    margin-top: 18px;
  }

  .pix-panel {
    grid-template-columns: 1fr;
  }

  .pix-panel img {
    width: 160px;
  }

  .copy-pix {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 span {
    white-space: normal;
  }

  .image-band figure {
    height: 330px;
  }

  .rituals-hero {
    min-height: 360px;
  }

  .rituals-hero h2 {
    padding: 24px;
  }

  .floating-whatsapp {
    display: none;
  }
}
