/* Carla Lizott — Autocuidado Feminino */
:root {
  --bg: #f7f2f8;
  --bg-soft: #efe6f2;
  --surface: #ffffff;
  --text: #2a2430;
  --text-muted: #6b6175;
  --lavender: #9b7fb8;
  --lavender-deep: #6d5288;
  --lavender-soft: #d4c4e0;
  --blush: #d4a0a8;
  --blush-deep: #b87a84;
  --action: #c45b6a;
  --action-hover: #a84856;
  --border: #e8dde9;
  --ok: #5a8f72;
  --shadow: 0 12px 40px rgba(90, 70, 110, 0.1);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --offer-bar-h: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--lavender-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--text);
  letter-spacing: -0.025em;
}

.text-accent {
  color: var(--lavender-deep);
  background: linear-gradient(120deg, var(--lavender-deep), var(--action));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent-light {
  color: #f0c8d0;
  background: linear-gradient(120deg, #f5d0d8, #e8d4f5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .text-accent {
  background: linear-gradient(120deg, #e8c4f0, #ffb8c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 242, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(247, 242, 248, 0.96);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-top: 0.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--lavender-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 750;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, filter 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--action) 0%, #d46a8a 55%, var(--lavender-deep) 140%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(196, 91, 106, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--action-hover) 0%, var(--action) 100%);
  color: #fff;
  filter: brightness(1.05);
}

.btn-buy {
  background: linear-gradient(135deg, #d4556a 0%, var(--action) 45%, #9b5f9e 100%);
  color: #fff;
  box-shadow:
    0 12px 32px rgba(196, 91, 106, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  font-size: 1.12rem;
  padding: 1.15rem 2rem;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.btn-buy:hover {
  background: linear-gradient(135deg, var(--action-hover) 0%, #c45b6a 60%, #7a4a8a 100%);
  color: #fff;
  animation: none;
  filter: brightness(1.06);
}

.btn-lavender {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 82, 136, 0.32);
}

.btn-lavender:hover {
  background: #5c4474;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--lavender-deep);
  border: 2px solid var(--lavender);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  color: var(--lavender-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--lavender-deep);
  border: 2px solid rgba(255, 255, 255, 0.95);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--action);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.25rem 2.35rem;
  font-size: 1.18rem;
}

/* Offer top bar */
.offer-bar {
  background: linear-gradient(90deg, #7a2f55, #6d5288 40%, #c45b6a 70%, #7a2f55);
  background-size: 200% 100%;
  animation: offerShine 8s linear infinite;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.offer-bar strong {
  color: #ffe0e6;
  font-size: 1.05em;
}

.offer-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--offer-bar-h));
  min-height: calc(100svh - var(--header-h) - var(--offer-bar-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #2a2030;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  animation: heroZoom 18s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(32, 24, 40, 0.78) 0%, rgba(32, 24, 40, 0.45) 48%, rgba(32, 24, 40, 0.2) 100%),
    linear-gradient(to top, rgba(32, 24, 40, 0.65) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5.5rem;
  max-width: 42rem;
  color: #fff;
  animation: fadeUp 0.9s ease-out both;
}

.hero__content h1 {
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.08;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 34rem;
  line-height: 1.55;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: #fff;
  margin-bottom: 1.35rem;
  opacity: 0.98;
  font-weight: 600;
}

.hero__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #f0c8d8;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__price {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__price strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.hero__price .strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 1.15rem;
  margin-right: 0.4rem;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--soft {
  background: var(--bg-soft) url("../img/bg-lavanda-1.jpg") center / cover no-repeat;
  background-blend-mode: soft-light;
}

.section--gradient {
  background: var(--bg-soft) url("../img/bg-gradiente.png") center / cover no-repeat;
  background-blend-mode: soft-light;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 91, 106, 0.12);
}

.section__title {
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  max-width: 16ch;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.section__lead {
  color: var(--text-muted);
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.65;
}

/* Problem grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.problem-item {
  background: var(--surface);
  border: 1px solid var(--lavender-soft);
  border-left: 5px solid var(--lavender-deep);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(109, 82, 136, 0.06);
}

.problem-item:nth-child(2) {
  border-left-color: var(--action);
}

.problem-item:nth-child(3) {
  border-left-color: #9b7fb8;
}

.problem-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--lavender-deep);
}

.problem-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

.problem-item::before {
  display: none;
}

/* Product split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__body .checklist {
  margin: 1.5rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--lavender);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.price-tag__value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--lavender-deep);
}

.price-tag__note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(90, 143, 114, 0.15);
  color: var(--ok);
}

.badge--gift {
  background: rgba(184, 122, 132, 0.18);
  color: var(--blush-deep);
}

/* Path */
.path-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.path-list {
  display: grid;
  gap: 1.5rem;
}

.path-list h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--lavender-deep);
}

.path-list p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.path-grid__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* Creator */
.creator {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.creator__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.creator__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.creator blockquote {
  margin: 1.5rem 0 0;
  padding: 0.25rem 0 0.25rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--lavender-deep);
  border: 0;
  border-left: 4px solid var(--action);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 5.5rem 0;
  background:
    linear-gradient(160deg, rgba(109, 82, 136, 0.92), rgba(90, 40, 70, 0.94)),
    url("../img/bg-lavanda-5.jpg") center / cover;
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  max-width: 20ch;
  margin-inline: auto;
  font-weight: 700;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-band .btn-primary,
.cta-band .btn-buy {
  background: #fff;
  color: var(--action);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  animation: none;
}

.cta-band .btn-primary:hover,
.cta-band .btn-buy:hover {
  background: #ffe8ec;
  color: var(--action-hover);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Auth / form pages */
.page-shell {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: var(--bg) url("../img/bg-lavanda-2.jpg") center / cover no-repeat;
  background-blend-mode: soft-light;
}

.form-card {
  width: min(100%, 440px);
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-card--wide {
  width: min(100%, 920px);
}

.form-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.form-card > .lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #faf8fb;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(155, 127, 184, 0.2);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  margin: 1rem 0 1.25rem;
  color: var(--text-muted);
}

.form-check input {
  margin-top: 0.2rem;
}

.form-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.demo-box {
  background: var(--bg-soft);
  border: 1px dashed var(--lavender-soft);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.demo-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lavender-deep);
}

.demo-box code {
  font-family: ui-monospace, monospace;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.form-error {
  display: none;
  color: var(--blush-deep);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

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

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 901px) {
  .checkout-summary {
    position: sticky;
    top: calc(var(--header-h, 4.5rem) + 1rem);
    z-index: 2;
  }
}

.checkout-alert {
  display: block;
  background: rgba(196, 74, 90, 0.1);
  border: 1px solid rgba(196, 74, 90, 0.4);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  color: var(--action);
  font-weight: 600;
}

.checkout-alert p {
  margin: 0;
}

.checkout-alert .btn {
  margin-top: 0.75rem;
}

.checkout-alert--submit {
  margin: 1rem 0 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.order-line:last-child {
  border-bottom: 0;
}

.order-line__title {
  font-weight: 650;
  font-size: 0.95rem;
}

.order-line__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.order-line__price {
  font-weight: 650;
  white-space: nowrap;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--text);
  font-weight: 700;
}

.order-total strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lavender-deep);
}

.bump {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.bump:has(input:checked),
.bump.is-active {
  border-color: var(--lavender);
  background: rgba(155, 127, 184, 0.08);
}

.bump input {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--lavender-deep);
}

.bump__title {
  font-weight: 650;
  font-size: 0.95rem;
}

.bump__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.bump__price {
  font-weight: 700;
  color: var(--lavender-deep);
  white-space: nowrap;
}

/* Thanks */
.thanks {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.thanks__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(90, 143, 114, 0.15);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.thanks-list {
  text-align: left;
  margin: 1.5rem 0;
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.thanks-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.thanks-list li:last-child {
  border-bottom: 0;
}

/* Member area */
.member-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.member-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.25rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(90, 70, 110, 0.06);
}

.guide-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}

.guide-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.guide-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.guide-card__body h3 {
  font-size: 1.1rem;
  margin: 0;
}

.guide-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.guide-card .btn {
  margin-top: 0.75rem;
  align-self: flex-start;
}

.guide-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.guide-card__actions .btn {
  margin-top: 0;
}

/* Calculadora — Mapa de Sintomas */
.calc-page {
  padding-bottom: 3rem;
}

.calc-legend {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(90, 70, 110, 0.05);
}

.calc-legend__title {
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.calc-legend__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.calc-legend__list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.calc-legend__list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--lavender-deep);
  font-size: 0.8rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem 1.35rem;
  box-shadow: 0 4px 20px rgba(90, 70, 110, 0.05);
}

.calc-category__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.calc-category__header h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.calc-category__score {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.calc-category__score strong {
  color: var(--lavender-deep);
  font-variant-numeric: tabular-nums;
}

.calc-symptoms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-symptom__label {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.calc-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.calc-scale__option {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.calc-scale__option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.calc-scale__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.5rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

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

.calc-scale__option:hover .calc-scale__value {
  border-color: var(--lavender);
  transform: translateY(-1px);
}

.calc-scale__option input:focus-visible + .calc-scale__value {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

.calc-scale__option input:checked + .calc-scale__value {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-deep) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(109, 82, 136, 0.28);
}

.calc-result {
  position: sticky;
  bottom: 0.75rem;
  z-index: 5;
  margin-top: 1.75rem;
}

.calc-result__inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 40px rgba(90, 70, 110, 0.14);
}

.calc-result__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.calc-result__total {
  margin: 0 0 0.85rem;
  font-family: var(--font-display), serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.calc-result__total strong {
  color: var(--lavender-deep);
  font-variant-numeric: tabular-nums;
}

.calc-result__band {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid transparent;
}

.calc-result__band[data-tone="ok"] {
  background: rgba(90, 143, 114, 0.12);
  border-color: rgba(90, 143, 114, 0.35);
}

.calc-result__band[data-tone="warn"] {
  background: rgba(196, 160, 70, 0.14);
  border-color: rgba(180, 140, 40, 0.35);
}

.calc-result__band[data-tone="elevated"] {
  background: rgba(196, 120, 70, 0.14);
  border-color: rgba(180, 100, 40, 0.35);
}

.calc-result__band[data-tone="alert"] {
  background: rgba(196, 91, 106, 0.12);
  border-color: rgba(196, 91, 106, 0.35);
}

.calc-result__band-label {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.calc-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 600px) {
  .guide-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-card__actions .btn {
    width: 100%;
    text-align: center;
  }

  .calc-scale__value {
    min-width: 2.15rem;
    height: 2.15rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 12px 32px rgba(196, 91, 106, 0.45),
      0 0 0 0 rgba(196, 91, 106, 0.35);
  }
  50% {
    box-shadow:
      0 14px 40px rgba(196, 91, 106, 0.55),
      0 0 0 10px rgba(196, 91, 106, 0.12);
  }
}

@keyframes offerShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Turn / solution */
.section--turn {
  background: linear-gradient(145deg, #2a1830 0%, #6d3d6a 48%, #c45b6a 130%);
  color: #fff;
  text-align: center;
}

.section--turn .section__eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.section--turn .section__title,
.section--turn h2 {
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.section--turn .section__lead {
  color: rgba(255, 255, 255, 0.88);
  margin-inline: auto;
  font-size: 1.15rem;
}

/* Offer block */
.offer-block {
  background: var(--surface);
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, var(--lavender), var(--action));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: calc(var(--radius) + 6px);
  padding: 2.35rem 2rem;
  box-shadow: 0 20px 50px rgba(109, 82, 136, 0.15);
  max-width: 580px;
  margin: 2.25rem auto 0;
  text-align: center;
}

.offer-block__eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 0.5rem;
}

.offer-block__price {
  margin: 1.15rem 0 1.35rem;
}

.offer-block__was {
  display: block;
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.offer-block__now {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--action);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--action), var(--lavender-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-block__save {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(90, 143, 114, 0.18);
  color: var(--ok);
  font-size: 0.88rem;
  font-weight: 800;
}

.offer-block .checklist {
  text-align: left;
  max-width: 26rem;
  margin: 1.25rem auto;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.offer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Gift highlight */
.gift-banner {
  display: inline-block;
  background: linear-gradient(135deg, var(--action), #9b5f9e);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 20px rgba(196, 91, 106, 0.3);
}

/* Upsell teaser */
.upsell-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.upsell-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.upsell-item__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}

.upsell-item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.upsell-item__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.upsell-item__body h3 {
  font-family: var(--font-display), serif;
  font-size: 1.1rem;
  margin: 0;
}

.upsell-item__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lavender-deep);
  margin: 0.15rem 0;
}

.upsell-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}

.upsell-item .btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid var(--border);
}

.testimonial__stars {
  color: #c4a035;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.testimonial p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lavender-deep);
}

/* Guarantee */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 2px dashed var(--ok);
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 720px;
  margin: 0 auto;
}

.guarantee__seal {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(90, 143, 114, 0.15);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  flex-shrink: 0;
}

.guarantee h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.guarantee p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 650;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-item button span {
  font-size: 1.4rem;
  color: var(--lavender-deep);
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-item__body {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-item__body {
  display: block;
}

/* Sticky buy bar */
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: linear-gradient(90deg, #2a1830, #4a2a48 50%, #2a1830);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.9rem 0;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.28);
}

.buy-bar.is-visible {
  transform: translateY(0);
}

.buy-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.buy-bar__price {
  font-size: 0.85rem;
  opacity: 0.85;
}

.buy-bar__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  opacity: 1;
  font-weight: 700;
}

.buy-bar .btn {
  animation: ctaPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

body.has-buy-bar {
  padding-bottom: 5.5rem;
}

/* Checkout persuasion */
.checkout-urgency {
  background: rgba(196, 91, 106, 0.1);
  border: 1px solid rgba(196, 91, 106, 0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--action-hover);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.checkout-save {
  background: rgba(90, 143, 114, 0.12);
  color: var(--ok);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 650;
  margin-top: 0.75rem;
}

.bump--featured {
  border-color: var(--action);
  position: relative;
}

.bump__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--action);
  color: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.checkout-submit .btn {
  font-size: 1.05rem;
  padding: 1rem;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .problem-grid,
  .split,
  .split--reverse,
  .path-grid,
  .creator,
  .checkout-grid,
  .guides-grid,
  .testimonials,
  .upsell-teaser {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .path-grid__media {
    order: -1;
  }

  .creator {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

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

  .nav a {
    padding: 0.85rem 1.25rem;
  }

  .nav .btn {
    margin: 0.5rem 1.25rem 1rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 88vh;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__content {
    padding-bottom: 3rem;
  }

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

  .creator__photo {
    max-width: 240px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee__seal {
    margin-inline: auto;
  }

  .buy-bar__copy {
    display: none;
  }

  .offer-bar {
    font-size: 0.8rem;
  }
}

/* Conta + modal de login no checkout do funil */
.checkout-account {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}
.checkout-account strong,
.checkout-account span {
  display: block;
}
.checkout-account span {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}
.checkout-account--active {
  border-color: rgba(90, 143, 114, 0.45);
  background: #f3faf5;
}
.auth-modal {
  width: min(520px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}
.auth-modal::backdrop {
  background: rgba(42, 36, 48, 0.55);
  backdrop-filter: blur(3px);
}
.auth-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0.85rem;
}
.auth-modal__header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
}
.auth-modal .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}
.auth-modal__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}
.auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 1.35rem 1rem;
  padding: 5px;
  border-radius: 12px;
  background: var(--bg-soft);
}
.auth-modal__tabs button {
  border: 0;
  border-radius: 9px;
  padding: 0.65rem;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.auth-modal__tabs button[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(90, 70, 110, 0.08);
}
.auth-modal > section {
  padding: 0 1.35rem 1.35rem;
}
.auth-modal form {
  display: grid;
  gap: 0.85rem;
}
.auth-modal label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.auth-modal input[type="text"],
.auth-modal input[type="email"],
.auth-modal input[type="password"],
.auth-modal input:not([type]) {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--surface);
  color: var(--text);
}
.auth-modal fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border: 0;
  margin: 0;
  padding: 0;
}
.auth-modal legend {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.auth-modal__choice {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.auth-modal__text-action {
  border: 0;
  background: transparent;
  padding: 0.65rem 0;
  color: var(--lavender-deep);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}
.auth-modal__message {
  min-height: 1.1rem;
  margin: 0 !important;
  font-size: 0.88rem;
}
.auth-modal__message.is-error {
  color: var(--action);
}
.auth-modal__message.is-success {
  color: var(--ok);
}
.auth-modal .btn,
.auth-modal .button {
  width: 100%;
}
.auth-modal .muted {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}
.auth-panel .auth-modal__tabs {
  margin: 0 0 1.25rem;
}
.auth-panel .auth-modal__text-action {
  margin-top: 0.75rem;
}
.auth-panel [data-auth-view] label {
  display: block;
}
.auth-panel fieldset {
  border: 1px solid var(--line, #e8e1d6);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
}
.auth-panel .auth-modal__choice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0;
  font-weight: 500;
}
@media (max-width: 680px) {
  .checkout-account {
    grid-template-columns: 1fr;
  }
}

/* Landing: corpo editorial do CMS */
.landing-cms {
  max-width: 44rem;
}
.landing-cms__media {
  margin: 0 0 1.75rem;
  border-radius: 1rem;
  overflow: hidden;
}
.landing-cms__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.cms-rich--landing h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 0.85rem;
}
.cms-rich--landing h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-top: 2rem;
  color: var(--charcoal, #1f1b18);
}
.cms-rich--landing p {
  color: var(--text-muted, #5c534c);
  margin: 0 0 1rem;
}
.cms-rich--landing ul {
  margin: 0 0 1.25rem;
  color: var(--text-muted, #5c534c);
}
.cms-rich--landing li {
  margin: 0.35rem 0;
}
.landing-cms__cta {
  margin-top: 2rem;
  text-align: center;
}

