:root {
  --bg: #f7efe7;
  --bg-soft: #efe4d7;
  --paper: rgba(255, 251, 247, 0.84);
  --text: #57435a;
  --muted: #74657d;
  --plum: #70577e;
  --plum-deep: #564060;
  --sage: #a7ad96;
  --sage-deep: #81876f;
  --gold: #c5a483;
  --line: rgba(112, 87, 126, 0.16);
  --shadow: 0 24px 64px rgba(94, 72, 83, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(197, 164, 131, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(167, 173, 150, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf5ef 0%, #f6ede4 45%, #fbf7f1 100%);
  min-height: 100vh;
}

body.page-registration {
  background:
    radial-gradient(circle at top left, rgba(193, 217, 193, 0.34), transparent 26%),
    radial-gradient(circle at top right, rgba(202, 216, 199, 0.28), transparent 22%),
    linear-gradient(180deg, #f8f5ef 0%, #eef3ea 42%, #f8f6f1 100%);
}

body.has-enrollment-cta {
  padding-bottom: 112px;
}

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

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

p,
li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 16px;
  background: rgba(253, 248, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(95, 72, 85, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(112, 87, 126, 0.15);
}

.brand span,
.site-footer h2,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.98rem;
}

.site-nav-static {
  position: static;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff8f0 !important;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(86, 64, 96, 0.18);
}

.nav-cta-current {
  background: rgba(112, 87, 126, 0.14);
  color: var(--plum-deep) !important;
  border: 1px solid rgba(112, 87, 126, 0.16);
  box-shadow: none;
  pointer-events: none;
}

.floating-enrollment-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 32px, 420px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 26px;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(95, 72, 85, 0.18);
}

.floating-enrollment-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.floating-enrollment-copy span {
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-enrollment-copy strong {
  color: var(--plum-deep);
  font-size: 1rem;
  line-height: 1.25;
}

.floating-enrollment-cta .button {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 22px;
  white-space: nowrap;
}

.floating-enrollment-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(112, 87, 126, 0.1);
  color: var(--plum-deep);
  cursor: pointer;
}

.floating-enrollment-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(112, 87, 126, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--plum-deep);
  border-radius: 99px;
}

.hero,
.section,
.site-footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 88px 0 72px;
}

.hero::before,
.section-soft::before,
.section-cta::before {
  content: "";
  position: absolute;
  inset: 32px auto auto -24px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(197, 164, 131, 0.24) 0%, rgba(197, 164, 131, 0) 72%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 8vw, 6.4rem);
  color: var(--plum-deep);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--plum-deep);
  max-width: 14ch;
}

h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 14px;
  color: var(--plum-deep);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.85;
  max-width: 62ch;
}

.hero-poem {
  margin: 28px 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(239, 228, 215, 0.85));
  border: 1px solid rgba(112, 87, 126, 0.08);
  box-shadow: var(--shadow);
}

.hero-poem p {
  margin: 0;
}

.hero-poem p + p {
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff8f0;
  box-shadow: 0 14px 30px rgba(86, 64, 96, 0.22);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.88;
  transform: none;
}

.button-secondary {
  background: rgba(255, 251, 247, 0.7);
  color: var(--plum-deep);
  border-color: rgba(112, 87, 126, 0.16);
}

.button-wide {
  width: 100%;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(255, 252, 248, 0.9), rgba(235, 225, 214, 0.82));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(167, 173, 150, 0.22) 0%, rgba(167, 173, 150, 0) 70%);
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.hero-artwork {
  aspect-ratio: 6 / 5;
  object-fit: contain;
}

.hero-note {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(167, 173, 150, 0.18);
  border: 1px solid rgba(129, 135, 111, 0.16);
}

.hero-note strong {
  font-size: 1.15rem;
  color: var(--plum-deep);
}

.registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.registration-subtitle {
  margin: 8px 0 22px;
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.registration-side,
.registration-side-card {
  display: grid;
  gap: 20px;
}

.registration-side-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 252, 248, 0.92), rgba(236, 224, 212, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body.page-registration .registration-side-card {
  background: linear-gradient(145deg, rgba(252, 253, 249, 0.94), rgba(231, 241, 232, 0.94));
}

.payment-options {
  display: grid;
  gap: 14px;
}

.payment-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(112, 87, 126, 0.14);
  background: rgba(255, 252, 248, 0.7);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.payment-card:hover,
.payment-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(112, 87, 126, 0.26);
  box-shadow: 0 14px 28px rgba(86, 64, 96, 0.12);
  outline: none;
}

.payment-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--plum-deep);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.payment-card p {
  margin: 0;
}

.payment-card-transfer {
  background: linear-gradient(180deg, rgba(167, 173, 150, 0.16), rgba(255, 252, 248, 0.8));
}

.payment-card-link {
  background: linear-gradient(180deg, rgba(112, 87, 126, 0.1), rgba(255, 252, 248, 0.84));
}

body.page-registration .payment-card-transfer {
  background: linear-gradient(180deg, rgba(193, 217, 193, 0.26), rgba(255, 252, 248, 0.84));
}

body.page-registration .payment-card-link {
  background: linear-gradient(180deg, rgba(202, 216, 199, 0.32), rgba(255, 252, 248, 0.88));
}

.payment-price-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.payment-module-note {
  margin: 4px 0 0;
  color: var(--plum-deep);
  font-size: 0.96rem;
  font-weight: 700;
}

.registration-section {
  display: grid;
  gap: 24px;
}

.registration-form {
  gap: 22px;
}

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

.signup-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(112, 87, 126, 0.18);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  font: inherit;
}

.signup-form select:focus {
  outline: 2px solid rgba(112, 87, 126, 0.18);
  border-color: rgba(112, 87, 126, 0.36);
}

.registration-check,
.payment-methods {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.72);
}

.registration-check legend,
.payment-methods legend {
  padding: 0 8px;
  font-weight: 700;
  color: var(--plum-deep);
}

.payment-legend-note {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.checkbox-row,
.payment-choice {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(112, 87, 126, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.9);
  cursor: pointer;
}

.payment-choice:has(input:checked) {
  border-color: rgba(112, 87, 126, 0.38);
  background: rgba(255, 252, 248, 1);
  box-shadow: 0 10px 24px rgba(77, 57, 88, 0.08);
}

.payment-path-choice {
  position: relative;
  align-items: stretch;
  border-radius: 12px;
  padding-right: 48px;
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.payment-path-choice input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-path-choice span {
  width: 100%;
}

.payment-methods:has(.payment-path-choice input:checked) .payment-path-choice:not(:has(input:checked)) {
  opacity: 0.54;
  background: rgba(255, 252, 248, 0.52);
}

.payment-methods:has(.payment-path-choice input:checked) .payment-path-choice:not(:has(input:checked)):hover,
.payment-methods:has(.payment-path-choice input:checked) .payment-path-choice:not(:has(input:checked)):focus-within {
  opacity: 0.82;
  border-color: rgba(112, 87, 126, 0.24);
  background: rgba(255, 252, 248, 0.86);
}

.payment-path-choice:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(112, 87, 126, 0.12);
  color: var(--plum-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkbox-row input[type="checkbox"],
.payment-choice input[type="radio"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--plum);
}

.payment-choice span {
  display: grid;
  gap: 4px;
}

.checkbox-row span {
  color: var(--plum-deep);
  font-weight: 700;
}

.payment-choice strong {
  color: var(--plum-deep);
}

.payment-choice small {
  color: var(--muted);
  font-size: 0.95rem;
}

.payment-choice[hidden] {
  display: none;
}

.payment-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-detail-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.68);
}

.payment-detail-card h3 {
  font-size: 1.5rem;
}

.payment-detail-card p {
  margin: 0;
}

.payment-detail-card p + p {
  margin-top: 6px;
}

.payment-detail-card[hidden] {
  display: none;
}

.payment-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 126, 181, 0.18);
  border-radius: 14px;
  background: #009ee3;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 158, 227, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.payment-link-button:hover,
.payment-link-button:focus-visible {
  background: #008dcc;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(0, 158, 227, 0.24);
}

.mercado-pago-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}

.mercado-pago-logo {
  display: block;
  width: 68px;
  height: auto;
}

.paypal-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.paypal-button-content {
  display: inline-grid;
  justify-items: center;
  align-content: start;
  gap: 0.5rem;
}

.signup-form .pp-B9WDXGZ6GYR96 {
  width: auto;
  border: none;
  border-radius: 0.25rem;
  background-color: #ffd140;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  box-shadow: none;
}

.paypal-button-wrap img {
  max-width: 100%;
  height: auto;
}

.payment-detail-note {
  margin-top: 12px !important;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.registration-submit {
  width: 100%;
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.thank-you-card {
  width: min(100%, 1040px);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    linear-gradient(155deg, rgba(255, 251, 246, 0.92), rgba(238, 226, 214, 0.9)),
    linear-gradient(180deg, rgba(167, 173, 150, 0.08), transparent);
  box-shadow: 0 18px 50px rgba(103, 79, 89, 0.08);
  border: 1px solid rgba(112, 87, 126, 0.1);
}

.thank-you-card h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  max-width: none;
  width: 100%;
}

.thank-you-lead,
.thank-you-body {
  margin: 0;
  max-width: none;
  width: 100%;
}

.thank-you-code {
  display: grid;
  gap: 6px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(112, 87, 126, 0.12);
}

.thank-you-code strong {
  color: var(--plum-deep);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.thank-you-lead {
  font-size: 1.24rem;
  line-height: 1.5;
  color: var(--plum-deep);
}

.thank-you-inline-note {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(112, 87, 126, 0.06);
  border: 1px solid rgba(112, 87, 126, 0.12);
}

.thank-you-inline-note p {
  margin: 0;
  max-width: none;
  width: 100%;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(167, 173, 150, 0.16);
  border: 1px solid rgba(129, 135, 111, 0.16);
  color: var(--plum-deep);
  font-weight: 700;
}

.thank-you-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff8f0;
  box-shadow: 0 10px 20px rgba(86, 64, 96, 0.18);
}

.thank-you-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 72px 0;
}

.section-soft {
  padding: 72px 32px;
  margin: 10px 0;
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    linear-gradient(155deg, rgba(255, 251, 246, 0.86), rgba(238, 226, 214, 0.9)),
    linear-gradient(180deg, rgba(167, 173, 150, 0.08), transparent);
  box-shadow: 0 18px 50px rgba(103, 79, 89, 0.08);
}

body.page-registration .section-soft {
  background:
    linear-gradient(155deg, rgba(255, 251, 246, 0.88), rgba(232, 241, 232, 0.92)),
    linear-gradient(180deg, rgba(193, 217, 193, 0.12), transparent);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 28px;
}

.section-heading > p:last-child {
  max-width: 72ch;
}

.section-intro-card {
  padding: 8px 0 8px 26px;
  border-left: 1px solid rgba(112, 87, 126, 0.18);
}

.section-intro-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-intro-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--plum-deep);
}

.section-intro-card p {
  margin: 0;
}

.section-intro-card p + p {
  margin-top: 10px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

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

.feature-card,
.module-card,
.profile-card,
.cta-panel,
.signup-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card,
.module-card,
.profile-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.76);
}

.profile-card {
  position: relative;
}

.profile-card-featured {
  background: linear-gradient(180deg, rgba(112, 87, 126, 0.08), rgba(255, 252, 248, 0.84));
}

.profile-card-secondary {
  background: linear-gradient(180deg, rgba(197, 164, 131, 0.1), rgba(255, 252, 248, 0.82));
}

.profile-role {
  margin: 10px 0 18px;
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.format-strip div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(112, 87, 126, 0.06);
  border: 1px solid rgba(112, 87, 126, 0.12);
}

.format-strip span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.format-strip strong {
  font-size: 1.02rem;
  color: var(--plum-deep);
}

.how-modes {
  display: grid;
  gap: 22px;
}

.mode-card,
.international-card {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.mode-card {
  padding: 28px;
  background: rgba(255, 252, 248, 0.76);
}

.mode-card-virtual {
  background:
    linear-gradient(180deg, rgba(112, 87, 126, 0.08), rgba(255, 252, 248, 0.84));
}

.mode-card-presencial {
  background:
    linear-gradient(180deg, rgba(197, 164, 131, 0.14), rgba(255, 252, 248, 0.84));
}

.mode-kicker {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mode-card h3,
.international-card h3 {
  max-width: 19ch;
  overflow-wrap: break-word;
}

.mode-card p:last-child,
.international-copy p:last-child {
  margin-bottom: 0;
}

.mode-format {
  margin: 24px 0 4px;
}

.mode-format div {
  background: rgba(255, 252, 248, 0.74);
}

.international-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 16%, rgba(112, 87, 126, 0.13), transparent 29%),
    radial-gradient(circle at 96% 86%, rgba(197, 164, 131, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.94), rgba(240, 230, 222, 0.84));
}

.international-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(112, 87, 126, 0.16);
  border-right: 0;
  border-bottom: 0;
  border-radius: 72% 0 0 0;
  opacity: 0.42;
  pointer-events: none;
}

.international-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 34px 34px 28px;
}

.international-copy h3 {
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 0.96;
}

.international-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(112, 87, 126, 0.1);
}

.international-note span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(112, 87, 126, 0.12);
  color: var(--plum-deep);
  font-size: 1.5rem;
}

.international-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.international-map {
  position: relative;
  min-height: 430px;
  padding: 20px;
}

.world-map {
  position: absolute;
  inset: 20px 10px 36px 0;
  width: calc(100% - 10px);
  height: calc(100% - 56px);
  filter: drop-shadow(0 18px 38px rgba(112, 87, 126, 0.09));
}

.map-land {
  fill: rgba(112, 87, 126, 0.12);
  stroke: rgba(112, 87, 126, 0.18);
  stroke-width: 0.8;
}

.map-label {
  color: var(--plum-deep);
}

.map-label circle {
  fill: #fffaf3;
  stroke: var(--plum);
  stroke-width: 3;
  filter: drop-shadow(0 0 3px rgba(112, 87, 126, 0.18));
}

.map-label text {
  fill: currentColor;
  paint-order: stroke;
  stroke: rgba(255, 252, 248, 0.94);
  stroke-width: 4px;
  stroke-linejoin: round;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
}

.map-flourish {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 112px;
  height: 132px;
  opacity: 0.52;
}

.map-flourish::before,
.map-flourish::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 112px;
  border: 1px solid rgba(112, 87, 126, 0.24);
  border-bottom: 0;
  border-radius: 80% 10% 80% 10%;
  transform-origin: bottom center;
}

.map-flourish::before {
  left: 8px;
  transform: rotate(-23deg);
}

.map-flourish::after {
  right: 4px;
  transform: rotate(19deg);
}

.international-footer {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 20px;
  align-items: center;
  padding: 22px 34px;
  background: rgba(112, 87, 126, 0.07);
  border-top: 1px solid rgba(112, 87, 126, 0.12);
}

.international-footer p,
.international-footer strong {
  margin: 0;
}

.international-footer strong {
  display: block;
  margin-top: 4px;
  color: var(--plum-deep);
}

.international-footer em {
  padding-left: 24px;
  border-left: 1px solid rgba(112, 87, 126, 0.22);
  color: var(--plum-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.modules,
.profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.timezone-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid rgba(112, 87, 126, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.94), rgba(236, 224, 212, 0.72)),
    rgba(112, 87, 126, 0.04);
}

.timezone-panel.is-timezone-missing {
  border-color: rgba(160, 91, 45, 0.46);
  box-shadow: 0 14px 34px rgba(160, 91, 45, 0.12);
}

.timezone-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.timezone-panel p {
  max-width: 58ch;
  margin: 0;
}

.timezone-select-label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--plum-deep);
  font-weight: 800;
}

.timezone-select-label input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(112, 87, 126, 0.24);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.94);
  color: var(--plum-deep);
  font: inherit;
  font-weight: 700;
}

.timezone-select-label input:focus {
  outline: 3px solid rgba(112, 87, 126, 0.2);
  border-color: rgba(112, 87, 126, 0.48);
}

.timezone-select-label span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.timezone-current {
  color: var(--plum-deep) !important;
}

.timezone-detect-button,
.time-change-button {
  justify-self: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--plum);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.timezone-options {
  position: static;
  grid-column: 1 / -1;
  z-index: 5;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(112, 87, 126, 0.22);
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 18px 42px rgba(95, 72, 85, 0.14);
}

.timezone-options[hidden] {
  display: none;
}

.timezone-options button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--plum-deep);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.timezone-options button:hover,
.timezone-options button:focus-visible {
  background: rgba(112, 87, 126, 0.1);
  outline: none;
}

.timezone-empty {
  margin: 0;
  padding: 10px 12px;
  color: var(--muted);
}

.timezone-panel.is-timezone-missing .timezone-select-label span {
  color: #8f4f2a;
}

.module-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.module-card li::marker {
  color: var(--plum);
}

.in-person-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(112, 87, 126, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.92), rgba(236, 224, 212, 0.78)),
    linear-gradient(180deg, rgba(112, 87, 126, 0.08), transparent);
  box-shadow: var(--shadow);
}

.in-person-feature h3 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.in-person-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(112, 87, 126, 0.08);
  color: var(--plum-deep);
  font-weight: 700;
}

.in-person-location svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.in-person-details {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.in-person-details p {
  margin: 0;
}

.in-person-actions {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(112, 87, 126, 0.07);
}

.in-person-actions ul {
  margin: 0;
  padding-left: 20px;
}

.in-person-actions li::marker {
  color: var(--plum);
}

.module-meta {
  display: grid;
  gap: 4px;
  margin: 18px 0 20px;
}

.module-meta p {
  margin: 0;
}

.local-time-card {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 16px;
  border: 1px solid rgba(112, 87, 126, 0.14);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.72);
}

.local-time-card[hidden] {
  display: none;
}

.local-time-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.local-time-header > span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-time-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.time-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(112, 87, 126, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.86);
  color: var(--plum);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.time-icon-button:hover,
.time-icon-button:focus-visible,
.time-icon-button[aria-expanded="true"] {
  background: rgba(112, 87, 126, 0.1);
  border-color: rgba(112, 87, 126, 0.34);
  outline: none;
}

.time-icon-button:hover {
  transform: translateY(-1px);
}

.time-icon-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.time-icon-button::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 8;
  min-width: max-content;
  padding: 6px 9px;
  border-radius: 10px;
  background: var(--plum-deep);
  color: #fffaf5;
  content: attr(data-tooltip);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.time-icon-button:hover::after,
.time-icon-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.local-time-card strong {
  color: var(--plum-deep);
  font-size: 1.12rem;
  line-height: 1.25;
}

.local-time-card p {
  margin: 0;
  color: var(--muted);
}

.local-time-explainer {
  margin-top: -2px !important;
  color: rgba(74, 50, 80, 0.72) !important;
  font-size: 0.92rem;
  line-height: 1.45;
}

.time-help-detail {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(112, 87, 126, 0.12);
}

.time-help-detail[hidden] {
  display: none;
}

.time-help-detail ul {
  margin: 0;
  padding-left: 18px;
}

.time-help-detail li {
  font-size: 0.98rem;
  line-height: 1.55;
}

.time-help-detail li strong {
  font-size: inherit;
  color: var(--plum);
}

.module-tag {
  margin-bottom: 12px;
  color: var(--plum);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-awakening {
  background: linear-gradient(180deg, rgba(167, 173, 150, 0.18), rgba(255, 252, 248, 0.8));
}

.module-crisis {
  background: linear-gradient(180deg, rgba(112, 87, 126, 0.12), rgba(255, 252, 248, 0.82));
}

.module-love {
  background: linear-gradient(180deg, rgba(197, 164, 131, 0.18), rgba(255, 252, 248, 0.84));
}

.module-future {
  background: linear-gradient(180deg, rgba(129, 135, 111, 0.14), rgba(255, 252, 248, 0.84));
}

.section-cta {
  padding: 84px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding: 32px;
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at top right, rgba(112, 87, 126, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 252, 248, 0.92), rgba(239, 228, 215, 0.96));
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.required-fields-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.required-fields-note span,
.required-mark {
  color: #a24c5b;
  font-weight: 800;
}

.signup-form label.is-required > .field-label,
.registration-check.is-required legend,
.payment-methods.is-required legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.signup-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(112, 87, 126, 0.18);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  font: inherit;
}

.signup-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid rgba(112, 87, 126, 0.18);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.signup-form input:focus {
  outline: 2px solid rgba(112, 87, 126, 0.18);
  border-color: rgba(112, 87, 126, 0.36);
}

.signup-form textarea:focus {
  outline: 2px solid rgba(112, 87, 126, 0.18);
  border-color: rgba(112, 87, 126, 0.36);
}

.signup-form label.is-invalid input,
.signup-form label.is-invalid select,
.signup-form label.is-invalid textarea,
.registration-check.is-invalid,
.payment-methods.is-invalid {
  border-color: rgba(162, 76, 91, 0.5);
  box-shadow: 0 0 0 3px rgba(162, 76, 91, 0.08);
}

.signup-form label.is-invalid input,
.signup-form label.is-invalid select,
.signup-form label.is-invalid textarea {
  background: rgba(255, 248, 248, 0.94);
}

.field-error-text {
  margin: -2px 0 0;
  color: #a24c5b;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note.is-success {
  color: var(--sage-deep);
}

.form-note.is-error {
  color: #8a4d4d;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 0 56px;
  border-top: 1px solid rgba(112, 87, 126, 0.14);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: rgba(112, 87, 126, 0.08);
  border: 1px solid rgba(112, 87, 126, 0.14);
  color: var(--plum-deep);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(112, 87, 126, 0.14);
  border-color: rgba(112, 87, 126, 0.24);
}

.contact-links svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-note {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.footer-note span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--plum-deep);
}

.footer-note p {
  margin: 0;
  font-size: 1rem;
}

.site-footer-copy h2 {
  max-width: none;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

@media (max-width: 1080px) {
  .hero,
  .registration-hero,
  .cta-panel,
  .two-column,
  .section-heading-split,
  .in-person-feature,
  .international-card,
  .international-footer,
  .timezone-panel,
  .modules,
  .profiles,
  .thank-you-layout {
    grid-template-columns: 1fr;
  }

  .layout-grid,
  .format-strip,
  .form-grid,
  .payment-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 56px;
  }

  h2 {
    max-width: 18ch;
  }

  .site-footer {
    align-items: start;
    justify-items: start;
    text-align: left;
  }

  .site-footer-copy h2 {
    max-width: none;
  }

  .section-intro-card {
    padding-left: 18px;
  }

  .international-map {
    min-height: 380px;
  }

  .international-footer em {
    padding-left: 0;
    border-left: 0;
  }

  .thank-you-lead,
  .thank-you-body,
  .thank-you-inline-note p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    align-items: center;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(253, 248, 242, 0.96);
    border: 1px solid rgba(112, 87, 126, 0.1);
    box-shadow: 0 18px 40px rgba(95, 72, 85, 0.12);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero,
  .section,
  .section-soft,
  .section-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-soft {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-intro-card {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(112, 87, 126, 0.18);
  }

  .layout-grid,
  .format-strip,
  .form-grid,
  .payment-details {
    grid-template-columns: 1fr;
  }

  .mode-card,
  .international-copy,
  .international-footer,
  .timezone-panel {
    padding: 22px;
  }

  .mode-card p,
  .international-copy p,
  .international-footer p,
  .timezone-panel p,
  .international-note p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .international-copy h3 {
    max-width: 10.5ch;
    font-size: clamp(1.95rem, 9.4vw, 2.45rem);
  }

  .international-note {
    grid-template-columns: 1fr;
  }

  .international-map {
    min-height: 500px;
    overflow: hidden;
    padding: 0 12px 16px;
  }

  .world-map {
    inset: 10px 0 26px;
    width: 100%;
    height: calc(100% - 36px);
  }

  .map-label text {
    font-size: 19px;
    stroke-width: 5px;
  }

  .map-flourish {
    width: 76px;
    height: 92px;
    right: 12px;
    bottom: 10px;
  }

  .map-flourish::before,
  .map-flourish::after {
    width: 36px;
    height: 78px;
  }

  .cta-panel {
    padding: 22px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .floating-enrollment-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(197, 164, 131, 0.22), transparent 24%),
      linear-gradient(180deg, #fbf5ef 0%, #f7efe6 100%);
  }

  p,
  li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: 1.3rem;
  }

  .hero-poem,
  .feature-card,
  .module-card,
  .profile-card,
  .signup-form {
    padding: 20px;
  }

  .thank-you-note {
    padding: 22px;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .contact-links a {
    width: 56px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .site-footer-copy h2 {
    max-width: 10ch;
  }

  body.page-registration .registration-hero {
    display: none;
  }

  body.page-registration .registration-section {
    padding-top: 28px;
  }

  body.page-registration .section-soft.registration-section {
    margin-top: 24px;
  }

  body.has-enrollment-cta {
    padding-bottom: 24px;
  }

  .floating-enrollment-cta {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 16px 14px;
    border-radius: 24px;
  }

  .floating-enrollment-cta.is-visible-mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-enrollment-copy strong {
    font-size: 0.98rem;
    padding-right: 36px;
  }

  .floating-enrollment-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .floating-enrollment-cta .button {
    width: 100%;
    min-height: 46px;
  }

  body.has-enrollment-cta.cta-mobile-active {
    padding-bottom: 132px;
  }
}

.section-heading-presenciales {
  align-items: center;
}

.section-aside-note {
  max-width: 30rem;
  justify-self: end;
  padding-left: 24px;
  border-left: 1px solid rgba(112, 87, 126, 0.18);
}

.section-aside-note p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--plum-deep);
}

.button-location::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  opacity: 0.82;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-6-5.4-6-11a6 6 0 1 1 12 0c0 5.6-6 11-6 11Z' fill='black'/%3E%3Ccircle cx='12' cy='10' r='2.5' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1080px) {
  .section-aside-note {
    max-width: none;
    justify-self: start;
    padding-left: 18px;
  }
}

@media (max-width: 820px) {
  .section-aside-note {
    border-left: 0;
    border-top: 1px solid rgba(112, 87, 126, 0.18);
    padding: 18px 0 0;
  }
}
