:root {
  --rose-900: #6d2937;
  --rose-800: #843a49;
  --rose-700: #9d4d60;
  --rose-600: #b65f75;
  --rose-300: #e8bac3;
  --rose-200: #f4dce1;
  --rose-100: #fbf0f2;
  --cream: #fffaf4;
  --cream-2: #f8efe5;
  --nude: #ead7ca;
  --sage: #8a9b82;
  --gold: #c49a55;
  --gold-2: #e9cf9c;
  --ink: #302423;
  --muted: #7b6865;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(109, 41, 55, 0.14);
  --shadow-soft: 0 18px 50px rgba(109, 41, 55, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(244, 220, 225, 0.72), transparent 38rem), var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--rose-700);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 999;
  background: var(--rose-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 108px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rose-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 95, 117, 0.18);
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 40px rgba(109, 41, 55, 0.06);
}

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

h1,
h2 {
  font-family: var(--font-title);
  color: var(--rose-900);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
  margin: 24px 0 22px;
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.8rem);
  margin: 18px 0 16px;
}

h3 {
  color: var(--rose-900);
  font-size: 1.1rem;
  line-height: 1.25;
}

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

#title-offer-custom {
  color: #6D2937;
}

.top-banner {
  position: relative;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(90deg, var(--rose-900), var(--rose-700));
  color: var(--white);
  padding: 0.58rem 1rem;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.top-banner strong {
  color: #ffe6d8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(255, 250, 244, 0.82);
  border-bottom: 1px solid rgba(180, 95, 117, 0.1);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 60px rgba(109, 41, 55, 0.08);
  background: rgba(255, 250, 244, 0.94);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 220, 225, 0.55));
  border: 1px solid rgba(196, 154, 85, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(109, 41, 55, 0.08);
}

.brand strong {
  display: block;
  color: var(--rose-900);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--rose-800);
}

.nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--rose-800), var(--rose-600));
  padding: 0.84rem 1.12rem;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(157, 77, 96, 0.24);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rose-900);
  margin: 4px auto;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 122px);
  display: grid;
  align-items: center;
  padding: 72px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 10%, rgba(232, 186, 195, 0.5), transparent 26rem),
    radial-gradient(circle at 20% 20%, rgba(233, 207, 156, 0.22), transparent 22rem),
    linear-gradient(160deg, rgba(255, 250, 244, 0.92), rgba(251, 240, 242, 0.72));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 80px;
  background: radial-gradient(circle, rgba(180, 95, 117, 0.12), transparent 65%);
}

.hero::after {
  width: 540px;
  height: 540px;
  right: -180px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(196, 154, 85, 0.18), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 4rem;
}

.hero-copy {
  max-width: 730px;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  max-width: 670px;
}

.hero-subtitle strong {
  color: var(--rose-900);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0 16px;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.88rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-900), var(--rose-600));
  box-shadow: 0 18px 44px rgba(157, 77, 96, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px rgba(157, 77, 96, 0.4);
}

.btn-secondary {
  color: var(--rose-800);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(180, 95, 117, 0.18);
  box-shadow: 0 14px 36px rgba(109, 41, 55, 0.07);
}

.btn-whatsapp {
  color: #234238;
  background: #e6f5ee;
  border: 1px solid rgba(35, 66, 56, 0.12);
}

.btn-full {
  width: 100%;
}

.microcopy {
  font-size: 0.9rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 34px;
}

.hero-stats div {
  min-width: 145px;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 95, 117, 0.13);
  box-shadow: 0 14px 44px rgba(109, 41, 55, 0.06);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-title);
  font-size: 2.15rem;
  color: var(--rose-900);
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.cover-card {
  width: min(410px, 88vw);
  border-radius: 26px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.cover-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(109, 41, 55, 0.14);
}

.floating-note {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(180, 95, 117, 0.16);
  border-radius: 20px;
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow-soft);
  animation: float 5.4s ease-in-out infinite;
}

.floating-note strong {
  display: block;
  color: var(--rose-900);
}

.floating-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.note-a {
  right: 0;
  top: 12%;
}

.note-b {
  left: -8px;
  bottom: 14%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pain {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(244, 220, 225, 0.34));
}

.pain-grid,
.product-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pain-card,
.feature-card,
.step-card,
.fit-card,
.price-card,
.compare-card,
.soft-callout,
.quote-box,
.pillars article,
.faq-list details,
.accordion details {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(180, 95, 117, 0.13);
  box-shadow: var(--shadow-soft);
}

.pain-card,
.feature-card,
.step-card {
  border-radius: var(--radius-md);
  padding: 1.35rem;
  min-height: 210px;
}

.pain-card span,
.pillars span,
.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-800);
  font-weight: 900;
  margin-bottom: 1rem;
}

.pain-card h3,
.feature-card h3,
.step-card h3 {
  margin-bottom: 0.55rem;
}

.pain-card p,
.feature-card p,
.step-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.soft-callout {
  margin: 28px auto 0;
  max-width: 940px;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 240, 242, 0.85));
}

.soft-callout span {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.soft-callout p {
  margin: 0;
}

.soft-callout strong {
  color: var(--rose-900);
}

.method {
  overflow: hidden;
}

.method::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  top: 0;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 85, 0.5), transparent);
}

.method-grid,
.modules-grid,
.offer-wrap,
.fit-grid,
.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3rem;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 130px;
}

.quote-box {
  border-radius: var(--radius-md);
  padding: 1.4rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 239, 229, 0.85));
}

.quote-box p {
  font-family: var(--font-title);
  color: var(--rose-800);
  font-size: 1.7rem;
  line-height: 1.12;
  margin: 0;
}

.pillars {
  display: grid;
  gap: 1rem;
}

.pillars article {
  border-radius: var(--radius-lg);
  padding: 1.55rem;
}

.pillars h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.pillars p {
  margin: 0;
}

.product {
  background:
    radial-gradient(circle at 10% 20%, rgba(196, 154, 85, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--cream), #fff);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: rgba(244, 220, 225, 0.65);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose-100), var(--cream));
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modules {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 240, 242, 0.58));
}

.modules-intro {
  position: sticky;
  top: 130px;
}

.modules-intro .btn {
  margin-top: 1rem;
}

.accordion,
.faq-list {
  display: grid;
  gap: 0.82rem;
}

details {
  border-radius: 18px;
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.1rem;
  color: var(--rose-900);
  font-weight: 900;
}

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

summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.accordion summary span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-700);
  font-size: 0.85rem;
  flex: 0 0 auto;
}

details p {
  padding: 0 1.1rem 1.1rem calc(1.1rem + 34px + 0.75rem);
  margin: 0;
  font-size: 0.95rem;
}

.transformation {
  background:
    radial-gradient(circle at 80% 30%, rgba(138, 155, 130, 0.16), transparent 26rem),
    var(--cream);
}

.compare-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.compare-column {
  padding: 2rem;
}

.compare-column.before {
  background: rgba(255, 255, 255, 0.68);
}

.compare-column.after {
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.86), rgba(244, 220, 225, 0.62));
}

.compare-column h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.compare-column ul,
.included-list,
.price-card ul,
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-column li,
.fit-card li,
.price-card li {
  position: relative;
  padding-left: 1.45rem;
  margin: 0.7rem 0;
  color: var(--muted);
}

.compare-column li::before,
.fit-card li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-700);
  font-weight: 900;
}

.result-disclaimer {
  max-width: 780px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.9rem;
}

.steps {
  background: #fff;
}

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

.offer {
  background:
    radial-gradient(circle at 20% 10%, rgba(244, 220, 225, 0.72), transparent 30rem),
    linear-gradient(135deg, var(--rose-900), #8d4051 56%, #b76076);
  color: var(--white);
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  pointer-events: none;
}

.offer .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffe4d7;
}

.offer h2,
.offer h3,
.offer p {
  color: var(--white);
}

.offer p {
  opacity: 0.86;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.included-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 36px 90px rgba(48, 36, 35, 0.22);
}

.price-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  margin: 1.3rem 0 0.2rem;
}

.price-card p,
.price-card li {
  color: var(--muted);
}

.popular-badge {
  display: inline-flex;
  color: var(--rose-900);
  background: var(--rose-100);
  border: 1px solid rgba(180, 95, 117, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.price-sub {
  margin-bottom: 1rem;
}

.price {
  font-family: var(--font-title);
  color: var(--rose-900);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.9;
  margin: 1.15rem 0 0.45rem;
  letter-spacing: -0.05em;
}

.price span {
  font-size: 2.4rem;
}

.price-note {
  margin-bottom: 1.4rem;
}

.price-card .btn + .btn {
  margin-top: 0.8rem;
}

.price-card ul {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(180, 95, 117, 0.14);
  padding-top: 1rem;
}

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

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

.fit-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 100%;
}

.fit-card h2 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  margin-bottom: 1.25rem;
}

.fit-card.muted {
  background: rgba(255, 255, 255, 0.46);
}

.fit-card.muted li::before {
  content: "–";
  color: var(--gold);
}

.about {
  background:
    radial-gradient(circle at 15% 15%, rgba(232, 186, 195, 0.45), transparent 24rem),
    #fff;
}

.about-grid {
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
}

.about-photo {
  text-align: center;
}

.portrait-placeholder {
  height: 510px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(244, 220, 225, 0.78)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.9), transparent 12rem);
  border: 1px solid rgba(180, 95, 117, 0.15);
  box-shadow: var(--shadow);
  color: var(--rose-700);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.portrait-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo p {
  font-size: 0.88rem;
  margin: 1rem auto 0;
  max-width: 330px;
}

.about-role {
  color: var(--rose-700);
  font-weight: 900;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.credentials span {
  background: var(--rose-100);
  color: var(--rose-800);
  border: 1px solid rgba(180, 95, 117, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.78rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.faq {
  background: linear-gradient(180deg, #fff, rgba(251, 240, 242, 0.52));
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.82);
}

.faq-list p {
  padding-left: 1.1rem;
}

.final-cta {
  padding: 96px 0;
  background: var(--cream);
}

.final-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 40px;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 220, 225, 0.74)),
    radial-gradient(circle at 15% 20%, rgba(196, 154, 85, 0.18), transparent 20rem);
  border: 1px solid rgba(180, 95, 117, 0.15);
  box-shadow: var(--shadow);
}

.final-card > span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.final-card p {
  max-width: 700px;
  margin-inline: auto;
}

.site-footer {
  background: var(--rose-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 0.7fr;
  gap: 2rem;
}

.site-footer .brand strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand small,
.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0.35rem 0;
  font-size: 0.94rem;
}

.site-footer p {
  max-width: 470px;
  margin: 1rem 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1f8c62;
  color: var(--white);
  border-radius: 999px;
  padding: 0.65rem 0.78rem 0.65rem 1rem;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(31, 140, 98, 0.32);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 0.75rem;
    font-size: 0.84rem;
  }

  .hero-grid,
  .method-grid,
  .modules-grid,
  .offer-wrap,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy {
    max-width: 820px;
  }

  .method-copy,
  .modules-intro,
  .faq-intro {
    position: static;
  }

  .hero-visual {
    min-height: auto;
    padding: 2rem 0 0;
  }

  .cover-card {
    width: min(440px, 82vw);
  }

  .note-a {
    right: 8%;
  }

  .note-b {
    left: 8%;
  }

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

  .included-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .top-banner {
    font-size: 0.78rem;
  }

  .nav {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 110px 18px auto 18px;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    background: rgba(255, 250, 244, 0.97);
    border: 1px solid rgba(180, 95, 117, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 52px 0 76px;
  }

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

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

  .hero-stats div {
    min-width: 0;
  }

  .compare-card,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .portrait-placeholder {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .pain-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-note {
    position: static;
    margin: 0.75rem auto 0;
    width: min(320px, 90vw);
  }

  .hero-visual {
    display: block;
    text-align: center;
  }

  .cover-card {
    margin-inline: auto;
  }

  .soft-callout {
    display: block;
  }

  details p {
    padding-left: 1.1rem;
  }

  .accordion summary span {
    display: none;
  }

  .compare-column,
  .fit-card,
  .price-card {
    padding: 1.35rem;
  }

  .price {
    font-size: 4rem;
  }

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

  .footer-bottom {
    display: block;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: inline;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
