:root {
  --navy: #05051F;
  --navy-2: #09092B;
  --plum: #2A063D;
  --purple: #7B2CFF;
  --violet: #B96CFF;
  --lavender: #DCC7FF;
  --gold: #D6A85A;
  --gold-2: #C9973E;
  --champagne: #F3E4CC;
  --ivory: #FAF7F2;
  --white: #FFFFFF;
  --ink: #151321;
  --muted: #756D7F;
  --shadow: 0 28px 90px rgba(5, 5, 31, .24);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

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

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--gold));
  border-radius: 999px;
}
body::-webkit-scrollbar-track { background: var(--navy); }

.container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(5, 5, 31, .62);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 30px rgba(123,44,255,.34));
}

.brand-copy strong {
  display: block;
  font-weight: 500;
  letter-spacing: .42em;
  font-size: 1.05rem;
}

.brand-copy em {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .56rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: .25s ease;
}

.desktop-nav a:hover { color: var(--gold); }

.nav-cta {
  color: var(--navy) !important;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #E7B56E);
}

.fullpage {
  width: 100%;
}

.panel {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 82px;
}

.panel-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(123,44,255,.28), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(214,168,90,.16), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--plum) 62%, var(--navy-2));
}

.panel-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(220,199,255,.34), transparent 28%),
    linear-gradient(180deg, var(--ivory), #fff);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.panel-centered {
  display: grid;
  place-items: center;
  text-align: center;
}

.panel-copy {
  max-width: 760px;
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: .73rem;
}

.kicker { color: var(--gold); }
.eyebrow { color: var(--purple); }

h1, h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.038em;
}

h1 {
  font-size: clamp(4rem, 7.3vw, 7.1rem);
}

h2 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

h3, p { margin-top: 0; }

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: rgba(255,255,255,.75);
  font-size: 1.16rem;
  line-height: 1.7;
}

.dark-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.center-lead {
  margin-inline: auto;
  color: rgba(255,255,255,.72);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
}

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
}

.primary {
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  color: var(--navy);
  box-shadow: 0 22px 55px rgba(214,168,90,.28);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 68px rgba(214,168,90,.36);
}

.secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}

.secondary:hover {
  color: var(--gold);
  border-color: rgba(214,168,90,.48);
}

.disabled {
  pointer-events: none;
  opacity: .45;
}

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

.hero-art {
  position: relative;
  min-height: 540px;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.glow-a {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(185,108,255,.30), transparent 64%);
}

.glow-b {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(214,168,90,.18), transparent 64%);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(214,168,90,.22);
}

.orbit-one {
  width: 490px;
  height: 490px;
  top: 42px;
  right: 26px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  top: 106px;
  right: 88px;
  border-color: rgba(220,199,255,.18);
}

.ribbon-system {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 74px;
  right: 58px;
  transform: rotate(-5deg);
}

.ribbon {
  position: absolute;
  border-radius: 999px;
  transform-origin: center;
}

.ribbon-1 {
  width: 360px;
  height: 84px;
  top: 164px;
  left: 0;
  transform: rotate(-38deg);
  background: linear-gradient(90deg, #2A063D, var(--purple), var(--violet));
  box-shadow: 0 30px 80px rgba(123,44,255,.38);
}

.ribbon-2 {
  width: 320px;
  height: 70px;
  top: 112px;
  left: 86px;
  transform: rotate(28deg);
  background: linear-gradient(90deg, rgba(185,108,255,.22), var(--violet));
}

.ribbon-3 {
  width: 330px;
  height: 64px;
  top: 236px;
  left: 70px;
  transform: rotate(32deg);
  background: linear-gradient(90deg, var(--gold-2), var(--gold), #E7B56E);
  box-shadow: 0 26px 76px rgba(214,168,90,.30);
}

.floating-card {
  position: absolute;
  max-width: 292px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.18);
}

.floating-card strong {
  display: block;
  color: var(--white);
}

.top-card {
  top: 26px;
  left: 0;
}

.bottom-card {
  right: 0;
  bottom: 52px;
}

.bottom-card strong {
  color: var(--gold);
}

.journey-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.journey-card {
  position: relative;
  min-height: 350px;
  padding: 38px;
  border-radius: 42px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: .35s ease;
}

.journey-card:hover { transform: translateY(-8px); }

.journey-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -110px;
  bottom: -120px;
  border: 1px solid rgba(214,168,90,.25);
}

.dark-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--plum));
}

.champagne-card {
  color: var(--ink);
  background: linear-gradient(135deg, #fff, var(--champagne));
}

.number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border-radius: 20px;
  color: var(--gold);
  background: rgba(214,168,90,.14);
  border: 1px solid rgba(214,168,90,.24);
  font-weight: 900;
}

.journey-card p {
  max-width: 500px;
  opacity: .72;
}

.journey-card strong {
  position: absolute;
  left: 38px;
  bottom: 34px;
  color: var(--gold);
}

.diagnostic-panel {
  padding: 28px;
  border-radius: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-grid button {
  min-height: 72px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.84);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.choice-grid button:hover,
.choice-grid button.selected {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  border-color: transparent;
  transform: translateY(-2px);
}

.diagnostic-result {
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(5,5,31,.36);
  border: 1px solid rgba(255,255,255,.10);
}

.diagnostic-result span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}

.diagnostic-result strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 1.2rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(42,6,61,.12);
  box-shadow: var(--shadow);
}

.method-grid article {
  min-height: 290px;
  padding: 30px;
  text-align: left;
  background: linear-gradient(180deg, #fff, var(--ivory));
}

.method-grid span {
  display: block;
  margin-bottom: 74px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
}

.method-grid p {
  color: var(--muted);
}

.specialty-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.specialty-grid span {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 26px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
  text-align: left;
}

.founder-grid {
  grid-template-columns: 420px 1fr;
}

.founder-visual {
  position: relative;
  min-height: 480px;
  border-radius: 46px;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(185,108,255,.26), transparent 30%),
    linear-gradient(145deg, var(--navy), var(--plum));
  color: var(--white);
  box-shadow: var(--shadow);
}

.founder-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(214,168,90,.22);
  border-radius: 50%;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
}

.initials {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: 132px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.4rem;
  background: linear-gradient(135deg, var(--purple), var(--gold));
}

.founder-meta {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
}

.founder-meta strong {
  display: block;
  font-size: 1.7rem;
}

.founder-meta span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}

.contact-card {
  padding: 38px;
  border-radius: 38px;
  color: var(--white);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-card strong {
  display: block;
  font-weight: 500;
  letter-spacing: .38em;
  font-size: 2rem;
}

.contact-card span {
  display: block;
  margin: 8px 0 24px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 900;
}

.contact-card p {
  font-weight: 800;
}

.contact-card a {
  display: block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
  margin: 12px 0;
}

.contact-card small {
  display: block;
  color: rgba(255,255,255,.58);
  margin-top: 24px;
}

.page-arrow {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 5;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  transition: .25s ease;
}

.page-arrow:hover {
  transform: translateX(-50%) translateY(-4px);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
}

.page-arrow span {
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin-top: -4px;
}

.page-arrow:hover span {
  border-color: var(--navy);
}

.light-arrow {
  background: rgba(5,5,31,.08);
  border-color: rgba(5,5,31,.12);
}

.light-arrow span {
  border-color: var(--plum);
}

.page-arrow .up {
  transform: rotate(225deg);
  margin-top: 6px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  box-shadow: 0 18px 50px rgba(5,5,31,.28);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }

  html {
    scroll-snap-type: y proximity;
  }

  .panel {
    height: auto;
    min-height: 100svh;
    padding: 108px 0 92px;
  }

  .panel-grid,
  .hero-grid,
  .diagnostic-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-art {
    min-height: 410px;
  }

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

  .method-grid article {
    min-height: 245px;
  }

  .panel-centered {
    display: block;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 76px;
  }

  .brand-copy em { display: none; }

  .brand-copy strong {
    letter-spacing: .27em;
    font-size: .98rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .journey-grid,
  .choice-grid,
  .method-grid,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 310px;
    padding: 30px;
    border-radius: 34px;
  }

  .journey-card strong {
    left: 30px;
  }

  .number {
    margin-bottom: 54px;
  }

  .diagnostic-panel {
    padding: 18px;
    border-radius: 30px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
    right: -26px;
  }

  .orbit-two {
    width: 270px;
    height: 270px;
    right: 20px;
  }

  .ribbon-system {
    transform: scale(.72) rotate(-5deg);
    transform-origin: top right;
    right: 0;
  }

  .floating-card {
    max-width: 240px;
    font-size: .9rem;
  }

  .founder-visual {
    min-height: 420px;
  }

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

  .page-arrow {
    bottom: 18px;
  }
}


/* Premium circular page arrows */
.page-arrow {
  width: 68px;
  height: 68px;
  bottom: 28px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.22), rgba(255,255,255,.06) 48%, rgba(255,255,255,.02)),
    rgba(255,255,255,.08);
  border: 1px solid rgba(214,168,90,.32);
  box-shadow:
    0 18px 60px rgba(0,0,0,.24),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.page-arrow::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(214,168,90,.18);
  opacity: .9;
  transition: .25s ease;
}

.page-arrow::after {
  content: "Siguiente";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.62);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .78;
}

.light-arrow::after {
  color: rgba(42,6,61,.54);
}

.page-arrow:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.03);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  border-color: transparent;
}

.page-arrow:hover::before {
  inset: -11px;
  border-color: rgba(214,168,90,.45);
}

.page-arrow span {
  width: 14px;
  height: 14px;
  border-width: 2.5px;
}

.contact-panel .page-arrow::after {
  content: "Inicio";
}

/* Side page number navigator */
.page-index {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 8px;
  border-radius: 999px;
  background: rgba(5,5,31,.48);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.page-index a {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: rgba(255,255,255,.58);
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 900;
  transition: .25s ease;
}

.page-index a span {
  position: relative;
  z-index: 2;
}

.page-index a em {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  font-style: normal;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  box-shadow: 0 12px 34px rgba(214,168,90,.22);
}

.page-index a:hover em {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.page-index a:hover {
  color: var(--gold);
  border-color: rgba(214,168,90,.35);
  background: rgba(255,255,255,.07);
}

.page-index a.active {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #E7B56E);
  border-color: transparent;
  box-shadow:
    0 12px 34px rgba(214,168,90,.34),
    0 0 0 6px rgba(214,168,90,.10);
}

.page-index a.active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(214,168,90,.36);
}

@media (max-width: 1040px) {
  .page-index {
    right: 14px;
    padding: 8px 6px;
    gap: 7px;
  }

  .page-index a {
    width: 34px;
    height: 34px;
    font-size: .74rem;
  }

  .page-index a em {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-index {
    top: auto;
    right: 50%;
    bottom: 86px;
    transform: translateX(50%);
    flex-direction: row;
    border-radius: 999px;
    max-width: calc(100vw - 28px);
    overflow-x: auto;
  }

  .page-index a {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
  }

  .page-arrow {
    width: 58px;
    height: 58px;
    bottom: 22px;
  }

  .page-arrow::after {
    display: none;
  }

  .floating-whatsapp {
    display: none;
  }
}


/* Correcciones de claridad comercial */
.hero-art {
  min-height: 500px;
}

.top-card {
  top: 42px;
  left: 8px;
}

.ribbon-system {
  top: 96px;
}

.card-label {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(214,168,90,.12);
  border: 1px solid rgba(214,168,90,.24);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .62rem;
  font-weight: 900;
}

.champagne-card .card-label {
  color: var(--plum);
  background: rgba(42,6,61,.06);
  border-color: rgba(42,6,61,.10);
}

.journey-card h3 {
  max-width: 420px;
}

.journey-card strong {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(214,168,90,.12);
  border: 1px solid rgba(214,168,90,.22);
}

.champagne-card strong {
  background: rgba(42,6,61,.06);
  border-color: rgba(42,6,61,.10);
  color: var(--plum);
}

@media (max-width: 720px) {
  .card-label {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
  }
}


/* Ajuste visual v2: primera pantalla más limpia, sin elementos cortados */
.hero-art {
  position: relative;
  min-height: 500px;
  max-width: 560px;
  margin: 0 auto;
  overflow: visible;
}

.hero-art .floating-card,
.top-card,
.bottom-card {
  display: none !important;
}

.orbit-one {
  width: 430px;
  height: 430px;
  top: 54px;
  right: 42px;
}

.orbit-two {
  width: 310px;
  height: 310px;
  top: 114px;
  right: 102px;
}

.ribbon-system {
  width: 370px;
  height: 370px;
  top: 94px;
  right: 72px;
}

.ribbon-1 {
  width: 310px;
  height: 74px;
  top: 142px;
}

.ribbon-2 {
  width: 276px;
  height: 60px;
  top: 98px;
  left: 74px;
}

.ribbon-3 {
  width: 282px;
  height: 56px;
  top: 202px;
  left: 62px;
}

.hero-logo-caption {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(0,0,0,.18);
}

.hero-logo-caption strong {
  display: block;
  color: var(--white);
  letter-spacing: .34em;
  font-weight: 500;
  font-size: 1rem;
}

.hero-logo-caption span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  font-weight: 900;
  white-space: nowrap;
}

/* El texto del botón de bajar aparece solo con hover */
.page-arrow::after {
  opacity: 0 !important;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}

.page-arrow:hover::after {
  opacity: .9 !important;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1040px) {
  .hero-art {
    min-height: 420px;
    max-width: 480px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
    right: 54px;
  }

  .orbit-two {
    width: 260px;
    height: 260px;
    right: 104px;
  }

  .ribbon-system {
    transform: scale(.82) rotate(-5deg);
    transform-origin: center;
    right: 36px;
  }

  .hero-logo-caption {
    bottom: 18px;
  }
}

@media (max-width: 720px) {
  .hero-art {
    min-height: 360px;
    max-width: 100%;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
    right: 8px;
    top: 40px;
  }

  .orbit-two {
    width: 220px;
    height: 220px;
    right: 48px;
    top: 82px;
  }

  .ribbon-system {
    transform: scale(.64) rotate(-5deg);
    transform-origin: top right;
    right: 10px;
    top: 72px;
  }

  .hero-logo-caption {
    bottom: 6px;
    padding: 13px 16px;
  }

  .hero-logo-caption strong {
    font-size: .86rem;
    letter-spacing: .26em;
  }

  .hero-logo-caption span {
    font-size: .5rem;
    letter-spacing: .12em;
  }
}


/* Ajuste v3: primera página sin dos opciones inferiores */
.hero-panel .panel-copy {
  padding-bottom: 40px;
}

.hero-panel .lead {
  margin-bottom: 0;
}

.hero-panel .panel-copy::after {
  content: "Avanzá para elegir si sos empresa o profesional";
  display: inline-flex;
  margin-top: 34px;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.journey-card strong {
  white-space: normal;
}

@media (max-width: 720px) {
  .hero-panel .panel-copy::after {
    font-size: .76rem;
    line-height: 1.35;
  }
}

/* v21 final: logo oficial, hero profesional y avisos legales para CV */
.brand-mark img { width:100%; height:100%; object-fit:contain; display:block; }
.hero-art { position:relative; min-height:520px; max-width:600px; margin:0 auto; isolation:isolate; }
.hero-symbol-wrap { position:absolute; top:78px; right:18px; width:350px; height:350px; display:grid; place-items:center; pointer-events:none; z-index:2; }
.hero-symbol-wrap::before { content:""; position:absolute; inset:-34px; border-radius:50%; background:radial-gradient(circle, rgba(123,44,255,.20), rgba(123,44,255,.08) 44%, transparent 72%); filter:blur(14px); z-index:-1; }
.hero-symbol { width:100%; height:100%; object-fit:contain; mix-blend-mode:screen; opacity:.98; filter:drop-shadow(0 22px 65px rgba(123,44,255,.26)); }
.hero-art .ribbon-system, .hero-logo-caption { display:none !important; }
.cv-legal-notice { position:relative; z-index:3; margin:14px 0 58px; max-width:520px; font-size:.78rem; line-height:1.45; }
.cv-legal-notice summary { cursor:pointer; width:fit-content; padding:8px 11px; border-radius:999px; color:var(--gold); background:rgba(214,168,90,.12); border:1px solid rgba(214,168,90,.22); font-weight:900; letter-spacing:.04em; }
.champagne-card .cv-legal-notice summary { color:var(--plum); background:rgba(42,6,61,.06); border-color:rgba(42,6,61,.10); }
.cv-legal-notice p { margin:10px 0 0; opacity:.72; }
.contact-card .contact-legal-notice { margin-top:14px; color:rgba(255,255,255,.72); font-size:.78rem; line-height:1.45; }
.contact-card .contact-legal-notice summary { cursor:pointer; color:var(--gold); font-weight:900; }
.founder-photo-card { padding:0; display:block; overflow:hidden; min-height:520px; }
.founder-photo-card::after { content:""; position:absolute; inset:auto 0 0 0; height:42%; z-index:2; background:linear-gradient(180deg, transparent, rgba(5,5,31,.18), rgba(5,5,31,.78)); }
.founder-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top; z-index:1; }
.founder-photo-meta { z-index:4; left:24px; right:24px; bottom:26px; padding:18px 22px; border-radius:26px; background:rgba(5,5,31,.70); border:1px solid rgba(214,168,90,.34); backdrop-filter:blur(18px); }
@media (max-width:1040px){ .hero-symbol-wrap{ width:300px; height:300px; top:72px; right:12px; } .cv-legal-notice{ margin-bottom:70px;} }
@media (max-width:720px){ .hero-art{min-height:360px;} .hero-symbol-wrap{ width:220px; height:220px; top:62px; right:8px;} .cv-legal-notice{ margin-bottom:74px;} }
