:root {
  --bg: #0b080a;
  --bg-soft: #120b0e;
  --panel: #171013;
  --panel-soft: #211219;
  --wine: #64162d;
  --wine-deep: #3e0f1d;
  --gold: #d9ad56;
  --gold-soft: #f1d58f;
  --text: #f7f0e9;
  --muted: #c7b9b2;
  --line: rgba(217, 173, 86, .22);
  --shadow: rgba(0, 0, 0, .38);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(93, 18, 44, .18), transparent 30%),
    linear-gradient(180deg, #0b080a 0%, #0e090c 45%, #090709 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.narrow {
  max-width: 940px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(8, 5, 7, .78), rgba(8, 5, 7, .18));
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .14em;
  margin-right: auto;
}

.main-nav,
.lang-switch,
.footer-links,
.footer-langs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a,
.lang-switch a,
.footer-links a,
.footer-langs a {
  text-decoration: none;
  color: var(--muted);
}

.main-nav a:hover,
.lang-switch a:hover,
.footer-links a:hover,
.footer-langs a:hover {
  color: var(--gold-soft);
}

.lang-switch {
  font-size: .83rem;
  letter-spacing: .09em;
}

.lang-active {
  color: var(--gold-soft);
}

.hero {
  min-height: 790px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url("/assets/images/passionduo_hero_background.png")
    center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8, 5, 7, .34) 0%,
      rgba(8, 5, 7, .08) 43%,
      rgba(8, 5, 7, .08) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .08) 0%,
      rgba(8, 5, 7, .14) 65%,
      #0b080a 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 800px;
}

.eyebrow,
.section-kicker,
.plan-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .78rem;
}

.hero h1 {
  margin: .16em 0 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .98;
  letter-spacing: .035em;
  color: #fff2dc;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero-subtitle {
  margin: .55rem 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.hero-motto {
  margin: 1.1rem 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: #fff;
}

.hero-lead {
  max-width: 690px;
  margin-top: 1.35rem;
  font-size: 1.12rem;
  color: #ded1ca;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: .2s ease;
}

.button-primary {
  color: #170d10;
  background: linear-gradient(180deg, #f2d790, #d7ab50);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-secondary {
  color: var(--gold-soft);
  border: 1px solid rgba(241, 213, 143, .5);
  background: rgba(13, 8, 10, .34);
}

.button-secondary:hover {
  background: rgba(217, 173, 86, .1);
}

.section {
  padding: 100px 0;
}

.section h2 {
  margin: .2em 0 .75em;
  color: #fff1db;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
}

.section-lead {
  color: var(--muted);
  font-size: 1.18rem;
}

.intro {
  background:
    radial-gradient(circle at 10% 10%, rgba(103, 25, 48, .12), transparent 26%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.feature-card,
.plan-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(31, 18, 24, .88), rgba(17, 11, 14, .94));
  box-shadow: 0 22px 50px var(--shadow);
}

.feature-number {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
}

.feature-card h3,
.plan-card h3 {
  color: var(--gold-soft);
  margin-bottom: .65em;
}

.feature-card p,
.plan-card p,
.plan-card li,
.section-heading > p,
.trailer-copy p,
.trust-copy p,
.closing-card p {
  color: var(--muted);
}

.visual-section {
  background:
    linear-gradient(180deg, rgba(30, 12, 20, .22), rgba(8, 6, 8, 0));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.screen-card {
  margin: 0;
  padding: 12px 12px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(22, 14, 18, .86);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .30);
}

.screen-card img {
  width: 100%;
  border-radius: 16px;
}

.screen-card figcaption {
  color: var(--muted);
  font-size: .9rem;
  padding: 14px 4px 0;
}

.trailer-section {
  background:
    radial-gradient(circle at 70% 45%, rgba(111, 25, 49, .22), transparent 28%);
}

.trailer-layout {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 390px);
  gap: 80px;
  align-items: center;
}

.video-frame {
  padding: 14px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #1c1116, #0c080a);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

.video-frame video {
  width: 100%;
  border-radius: 20px;
  background: #000;
}

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

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  position: relative;
}

.plan-pro {
  border-color: rgba(217, 173, 86, .48);
  transform: translateY(-10px);
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 29, 49, .22), transparent 35%),
    linear-gradient(180deg, rgba(37, 20, 27, .95), rgba(18, 11, 14, .97));
}

.plan-card ul {
  padding-left: 1.2rem;
}

.plan-card li {
  margin: .55rem 0;
}

.price-note {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.trust-section {
  border-top: 1px solid rgba(217, 173, 86, .08);
  border-bottom: 1px solid rgba(217, 173, 86, .08);
}

.trust-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.closing-section {
  padding-bottom: 120px;
}

.closing-card {
  padding: 52px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(119, 28, 52, .24), transparent 35%),
    linear-gradient(135deg, rgba(31, 17, 23, .94), rgba(12, 8, 10, .96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}

.closing-card h2 {
  max-width: 900px;
}

.closing-card p {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  background: #080608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  align-items: center;
}

.footer-brand {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 173, 86, .1);
  color: #958984;
  font-size: .88rem;
}

@media (max-width: 980px) {

  .main-nav {
    display: none;
  }

  .feature-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-pro {
    transform: none;
  }

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

  .section-heading,
  .trailer-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .trailer-layout {
    max-width: 720px;
  }

  .video-frame {
    max-width: 390px;
  }
}

@media (max-width: 620px) {

  .wrap {
    width: min(100% - 30px, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    min-height: 740px;
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(8, 5, 7, .58),
        rgba(8, 5, 7, .18)),
      linear-gradient(180deg,
        rgba(0, 0, 0, .10),
        #0b080a 100%);
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
    letter-spacing: .02em;
  }

  .section {
    padding: 74px 0;
  }

  .screens-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .screen-card {
    padding: 7px 7px 14px;
    border-radius: 18px;
  }

  .screen-card img {
    border-radius: 12px;
  }

  .screen-card figcaption {
    font-size: .78rem;
  }

  .closing-card {
    padding: 30px 24px;
  }

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

  .footer-links,
  .footer-langs {
    flex-wrap: wrap;
  }
}
.legal-header {
  position: relative;
  background: #0b080a;
}

.legal-main {
  padding: 76px 0 110px;
  min-height: 72vh;
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  margin: 0 0 1.2em;
  color: #fff1db;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.legal-wrap h2 {
  margin-top: 2.2em;
  color: var(--gold-soft);
  font-size: 1.55rem;
}

.legal-wrap h3 {
  margin: 1.4em 0 .3em;
  color: var(--gold);
  font-size: 1rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
}

.legal-wrap ul {
  padding-left: 1.35rem;
}

.legal-wrap li {
  margin: .45rem 0;
}

.legal-wrap a {
  color: var(--gold-soft);
}
/* PASSIONDUO_FONDO_PAGINA_V1 */
body {
  background:
    radial-gradient(circle at 12% 24%, rgba(112, 24, 49, .30), transparent 34%),
    radial-gradient(circle at 88% 58%, rgba(164, 109, 40, .12), transparent 31%),
    linear-gradient(180deg,
      rgba(8, 5, 7, .78) 0%,
      rgba(18, 8, 13, .84) 34%,
      rgba(10, 6, 9, .90) 68%,
      rgba(7, 5, 7, .94) 100%),
    url("/assets/images/passionduo_hero_background.png")
      center center / cover fixed no-repeat;
}

.intro {
  background:
    radial-gradient(circle at 10% 10%, rgba(126, 31, 57, .18), transparent 30%),
    linear-gradient(180deg, rgba(10, 6, 9, .12), rgba(10, 6, 9, .02));
}

.visual-section {
  background:
    radial-gradient(circle at 82% 22%, rgba(171, 117, 49, .07), transparent 26%),
    linear-gradient(180deg, rgba(43, 13, 24, .18), rgba(8, 6, 8, .05));
}

.trailer-section {
  background:
    radial-gradient(circle at 72% 45%, rgba(126, 28, 54, .28), transparent 30%),
    linear-gradient(180deg, rgba(10, 6, 9, .05), rgba(19, 8, 13, .16));
}

.trust-section {
  background:
    linear-gradient(180deg,
      rgba(13, 8, 11, .26),
      rgba(42, 13, 23, .15),
      rgba(11, 7, 9, .22));
}

.closing-section {
  background:
    radial-gradient(circle at 18% 70%, rgba(150, 93, 34, .08), transparent 28%),
    linear-gradient(180deg, rgba(13, 7, 10, .06), rgba(7, 5, 7, .36));
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 20% 18%, rgba(112, 24, 49, .26), transparent 36%),
      radial-gradient(circle at 88% 62%, rgba(164, 109, 40, .09), transparent 30%),
      linear-gradient(180deg,
        rgba(8, 5, 7, .82),
        rgba(17, 8, 12, .88) 48%,
        rgba(7, 5, 7, .94)),
      url("/assets/images/passionduo_hero_background.png")
        58% center / auto 100vh no-repeat;
    background-attachment: scroll;
  }
}
/* FIN_PASSIONDUO_FONDO_PAGINA_V1 */
/* PASSIONDUO_TRANSICION_HERO_V5 */
.hero {
  background: transparent;
}

.hero-overlay {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 68%,
    rgba(0,0,0,.92) 76%,
    rgba(0,0,0,.68) 86%,
    rgba(0,0,0,.32) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 68%,
    rgba(0,0,0,.92) 76%,
    rgba(0,0,0,.68) 86%,
    rgba(0,0,0,.32) 94%,
    transparent 100%
  );
}
/* PASSIONDUO_TRANSICION_ORGANICA_V2_PRUEBA */
.intro {
  position: relative;
}

.intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -190px;
  width: min(71vw, 1250px);
  height: 330px;
  background:
    url("/assets/images/passionduo_transicion_organica_v2.png")
      left center / contain no-repeat;
  opacity: .62;
  pointer-events: none;
  z-index: 1;
}

.intro > .wrap {
  position: relative;
  z-index: 2;
}
/* PASSIONDUO_GOOGLE_PLAY_SHOWCASE_V2 */
.google-play-showcase {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 42px auto 18px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 58px;
  align-items: center;
  border: 1px solid rgba(216, 172, 87, .30);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(224, 180, 91, .12), transparent 27%),
    radial-gradient(circle at 5% 100%, rgba(112, 22, 48, .28), transparent 41%),
    linear-gradient(128deg, rgba(30, 14, 20, .97), rgba(12, 8, 10, .985));
  box-shadow:
    0 28px 75px rgba(0, 0, 0, .33),
    inset 0 1px 0 rgba(255, 255, 255, .025);
}

.google-play-showcase::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 420px;
  height: 290px;
  border: 1px solid rgba(217, 173, 86, .08);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}

.google-play-showcase-copy,
.google-play-qr-zone {
  position: relative;
  z-index: 1;
}

.google-play-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.google-play-showcase h3 {
  max-width: 680px;
  margin: 0 0 14px;
  color: #fff0d8;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.google-play-description {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.google-play-actions {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.google-play-store-badge {
  min-width: 205px;
  min-height: 64px;
  padding: 10px 20px 10px 17px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(236, 202, 128, .42);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(18, 12, 14, .98), rgba(7, 5, 6, .99));
  box-shadow:
    0 15px 32px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .045);
}

.google-play-mark {
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 27px solid #e0bd73;
  filter: drop-shadow(0 0 8px rgba(224, 189, 115, .18));
}

.google-play-store-copy small,
.google-play-store-copy strong {
  display: block;
  font-family: Arial, sans-serif;
  line-height: 1.05;
}

.google-play-store-copy small {
  margin-bottom: 4px;
  color: #c6b9aa;
  font-size: .57rem;
  letter-spacing: .09em;
}

.google-play-store-copy strong {
  color: #fff4e3;
  font-size: 1.3rem;
  font-weight: 500;
}

.google-play-qr-zone {
  text-align: center;
}

.google-play-qr-frame {
  width: 164px;
  height: 164px;
  margin: 0 auto 15px;
  padding: 11px;
  border: 1px solid rgba(217, 173, 86, .35);
  border-radius: 23px;
  background: rgba(7, 5, 6, .58);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .24),
    inset 0 0 30px rgba(217, 173, 86, .025);
}

.google-play-qr-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    linear-gradient(45deg, rgba(215,170,84,.14) 25%, transparent 25%) 0 0 / 19px 19px,
    linear-gradient(-45deg, rgba(215,170,84,.08) 25%, transparent 25%) 0 0 / 19px 19px,
    rgba(14, 9, 11, .92);
}

.google-play-qr-inner span {
  color: #e1bd74;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .22em;
}

.google-play-qr-zone > strong {
  display: block;
  margin-bottom: 5px;
  color: #e9d6b7;
  font-size: .87rem;
  font-weight: 500;
}

.google-play-qr-zone > small {
  display: block;
  color: #948780;
  font-size: .72rem;
  line-height: 1.45;
}

.versions-section .commercial-availability-note {
  max-width: 850px;
  margin: 19px auto 0;
  text-align: center;
}

@media (max-width: 760px) {
  .google-play-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 32px 25px;
    text-align: center;
  }

  .google-play-description {
    margin-left: auto;
    margin-right: auto;
  }

  .google-play-actions {
    justify-content: center;
  }

.google-play-qr-zone {
    display: none;
  }
}
/* FIN_PASSIONDUO_GOOGLE_PLAY_SHOWCASE_V2 */
/* PASSIONDUO_MENSAJE_PRODUCTO_V1 */
.experience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 24px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.experience-strip span {
  position: relative;
}

.experience-strip span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: rgba(241, 213, 143, .48);
}

.continuity-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin: 34px auto 4px;
  padding: 16px 20px;
  border: 1px solid rgba(217, 173, 86, .18);
  border-radius: 999px;
  background: rgba(18, 10, 14, .46);
  color: #e5d8d0;
  font-size: .92rem;
  text-align: center;
}

.continuity-flow b {
  color: var(--gold);
  font-weight: 400;
}

@media (max-width: 620px) {
  .experience-strip {
    gap: 8px 14px;
    font-size: .66rem;
  }

  .experience-strip span:not(:last-child)::after {
    right: -9px;
  }

  .continuity-flow {
    border-radius: 22px;
    gap: 8px 10px;
    padding: 14px 15px;
    font-size: .82rem;
  }
}
/* FIN_PASSIONDUO_MENSAJE_PRODUCTO_V1 */
/* PASSIONDUO_PREGUNTAS_APERTURA_V1 */
.hero-question {
  max-width: 720px;
  margin: 18px 0 6px;
  color: #fff1db;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  font-weight: 500;
}

.discovery-question {
  max-width: 820px;
  margin: 0 auto 38px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 620px) {
  .hero-question {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .discovery-question {
    margin-bottom: 28px;
    font-size: 1.3rem;
  }
}
/* FIN_PASSIONDUO_PREGUNTAS_APERTURA_V1 */