:root {
  --purple-950: #21083d;
  --purple-900: #35105f;
  --purple-800: #4c1687;
  --purple-700: #6421a7;
  --purple-600: #7c3ccd;
  --lavender-300: #d9c2ff;
  --lavender-200: #eadbff;
  --lavender-100: #f9f2ff;
  --gold-700: #9b6506;
  --gold-500: #d69923;
  --gold-300: #f2d37a;
  --cream: #fff8eb;
  --white: #ffffff;
  --ink: #1f1830;
  --muted: #645c75;
  --green: #6d8a38;
  --warm: #ef8f18;
  --warm-dark: #6a2a05;
  --shadow: 0 24px 70px rgba(49, 11, 86, 0.18);
  --shadow-strong: 0 30px 80px rgba(33, 8, 61, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 194, 255, 0.72), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(242, 211, 122, 0.55), transparent 32rem),
    linear-gradient(180deg, #fff9ef 0%, #f8f0ff 43%, #fff8eb 100%);
  overflow-x: hidden;
}

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

svg {
  width: 100%;
  height: 100%;
}

svg path,
svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

strong {
  color: var(--purple-900);
  font-weight: 900;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h1 {
  margin-bottom: 22px;
  color: var(--purple-900);
  font-size: clamp(3rem, 8vw, 7.6rem);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(214, 153, 35, 0.25);
}

h2 {
  margin-bottom: 18px;
  color: var(--purple-900);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--purple-900);
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
  line-height: 1.15;
}

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

.section {
  position: relative;
  padding: clamp(68px, 8vw, 112px) 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 235, 0.86);
  border-bottom: 1px solid rgba(155, 101, 6, 0.16);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-900);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold-500);
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  box-shadow: inset 0 0 0 1px rgba(242, 211, 122, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--purple-900);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--purple-900);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.decor {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.decor-one {
  top: 34px;
  left: -88px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 60, 205, 0.25), transparent 70%);
}

.decor-two {
  right: -80px;
  bottom: 40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214, 153, 35, 0.26), transparent 70%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 445px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.hero-content {
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-700);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-300);
}

.eyebrow.warm {
  color: #ffd56f;
}

.question-card {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-900), var(--purple-600));
  box-shadow: 0 20px 40px rgba(53, 16, 95, 0.25), inset 0 0 0 1px rgba(242, 211, 122, 0.36);
}

.question-card p,
.question-card span {
  display: block;
  margin: 0;
  color: var(--white);
  font-weight: 950;
  line-height: 1.35;
}

.question-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-text {
  max-width: 530px;
  color: var(--purple-950);
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  box-shadow: 0 18px 35px rgba(53, 16, 95, 0.28), inset 0 0 0 1px rgba(242, 211, 122, 0.38);
}

.btn-outline {
  color: var(--purple-900);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(155, 101, 6, 0.24);
}

.btn-social {
  color: var(--purple-900);
  background: var(--white);
  border: 1px solid rgba(155, 101, 6, 0.22);
}

.btn.full {
  width: 100%;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--purple-800);
  font-weight: 900;
}

.poster-card {
  position: relative;
  margin: 0;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(242, 211, 122, 0.78), rgba(255, 255, 255, 0.52), rgba(124, 60, 205, 0.22));
  box-shadow: var(--shadow-strong);
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(24px);
}

.poster-card img {
  width: 100%;
  max-height: min(78vh, 680px);
  object-fit: contain;
  border-radius: 24px;
  background: var(--cream);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.feature-card,
.benefit-card,
.notice,
.contact-card,
.origin-card {
  border: 1px solid rgba(155, 101, 6, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
}

.feature-card.wide {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.feature-card p:last-child,
.notice p:last-child,
.contact-card p:last-child,
.origin-card h3:last-child {
  margin-bottom: 0;
}

.circle-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  padding: 21px;
  border-radius: 50%;
  color: var(--gold-700);
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 2px solid rgba(214, 153, 35, 0.55);
  box-shadow: inset 0 0 0 7px rgba(247, 240, 255, 0.72);
}

.circle-icon.small {
  width: 78px;
  height: 78px;
  padding: 18px;
  margin-bottom: 18px;
}

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

.section-purple {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(242, 211, 122, 0.2), transparent 20rem),
    linear-gradient(135deg, var(--purple-950), var(--purple-800));
}

.section-purple h2,
.section-purple h3,
.section-purple strong,
.section-purple p {
  color: var(--white);
}

.section-purple p {
  color: rgba(255, 255, 255, 0.82);
}

.protocol-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 211, 122, 0.25);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.2);
}

.book-card {
  display: grid;
  place-items: center;
  min-width: 214px;
  min-height: 248px;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  color: var(--gold-300);
  background:
    linear-gradient(135deg, rgba(242, 211, 122, 0.15), transparent),
    var(--purple-900);
  border: 2px solid rgba(242, 211, 122, 0.55);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04), 0 20px 40px rgba(0, 0, 0, 0.26);
}

.book-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 2.8rem;
}

.book-card strong {
  color: var(--gold-300);
  font-size: 1rem;
  letter-spacing: 0.07em;
  line-height: 1.48;
}

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

.benefit-card {
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  color: var(--gold-300);
}

.notice {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 890px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
}

.notice span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--purple-900);
  background: var(--gold-300);
}

.prostate-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 217, 85, 0.68), transparent 18rem),
    linear-gradient(135deg, rgba(83, 31, 2, 0.97), rgba(243, 142, 18, 0.88));
}

.prostate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent),
    radial-gradient(circle at left bottom, rgba(35, 8, 63, 0.32), transparent 27rem);
  pointer-events: none;
}

.prostate-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.prostate-content h2,
.prostate-content p,
.prostate-content strong,
.prostate-content h3 {
  color: var(--white);
}

.prostate-content .lead {
  color: #fff1c7;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 950;
  line-height: 1.22;
}

.script {
  color: #2a0a05 !important;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 205, 70, 0.45);
}

.panorama {
  display: inline-block;
  margin-top: 12px;
  padding: 18px 22px;
  border-radius: 22px;
  color: var(--white) !important;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.origin-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-xl);
  background: rgba(28, 13, 8, 0.68);
  border-color: rgba(255, 213, 111, 0.28);
}

.origin-card article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.origin-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff0b3;
  border: 2px solid rgba(255, 213, 111, 0.72);
}

.origin-card h3 {
  margin: 0;
  color: var(--white);
}

.contact-section {
  padding-bottom: 92px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 235, 0.82)),
    radial-gradient(circle at top right, rgba(217, 194, 255, 0.8), transparent 40%);
}

.contact-data {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.contact-data p {
  margin: 0;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 260px;
}

.footer {
  color: var(--white);
  background: var(--purple-950);
}

.footer-grid {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #2ab51d, #168a10);
  box-shadow: 0 20px 42px rgba(22, 138, 16, 0.36);
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #168a10;
  background: var(--white);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 248, 235, 0.96);
    border: 1px solid rgba(155, 101, 6, 0.18);
    box-shadow: 0 18px 45px rgba(35, 8, 63, 0.15);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-links a {
    border-radius: 14px;
    background: rgba(249, 242, 255, 0.72);
  }

  .hero-grid,
  .prostate-grid,
  .contact-card,
  .protocol-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: none;
  }

  .poster-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .nav {
    min-height: 66px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .question-card {
    border-radius: 24px;
  }

  .feature-card.wide,
  .two-columns,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    align-items: start;
  }

  .book-card {
    min-width: 0;
    width: 100%;
    min-height: 210px;
  }

  .poster-card img {
    max-height: none;
  }

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

  .notice {
    align-items: flex-start;
  }

  .origin-card article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand span:last-child {
    max-width: 170px;
    line-height: 1.12;
  }

  .feature-card,
  .protocol-panel,
  .contact-card,
  .origin-card {
    border-radius: 22px;
  }
}
