/* =====================================================================
   FLAME · landing.css — Página de inicio pública (menú + hero)
   Réplica del diseño de referencia. Mobile-first + breakpoints.
   ===================================================================== */

:root {
  --flame-pink:   #ff2d6f;
  --flame-coral:  #ff5a52;
  --flame-grad:   linear-gradient(95deg, #ff3d76 0%, #ff6a4d 100%);
  --ink:          #1b2240;
  --ink-soft:     #5b6178;
  --pink-soft:    #ffe3ee;
  --pink-tint:    #fff0f5;
  --line:         #efe6ea;
  --white:        #ffffff;
  --radius:       18px;
  --shadow-soft:  0 18px 50px rgba(255, 70, 120, .14);
  --shadow-card:  0 24px 60px rgba(27, 34, 64, .16);
  --maxw:         1240px;
}

* { box-sizing: border-box; }

body.lp {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 720px at 78% -8%, #ffd9e6 0%, rgba(255,240,245,0) 55%),
    radial-gradient(900px 600px at 0% 0%, #fff2f6 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #fdeef2 0%, #fdf1f4 40%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================== HEADER / NAV =========================== */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(8px);
  background: rgba(253, 240, 244, .55);
}
.lp-nav { display: flex; align-items: center; gap: 28px; }
.lp-logo img { height: 38px; width: auto; }

.lp-nav-links {
  display: flex; align-items: center; gap: 38px;
  margin: 0 auto;
}
.lp-nav-links a {
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  position: relative; transition: color .15s;
}
.lp-nav-links a:hover { color: var(--flame-pink); }

.lp-nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  background: var(--white); color: var(--ink); border: 1.5px solid #f0d9e1;
  transition: border-color .15s, transform .1s;
}
.btn-outline:hover { border-color: var(--flame-pink); }
.btn-grad {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  background: var(--flame-grad); color: #fff;
  box-shadow: 0 12px 26px rgba(255, 70, 120, .35);
  transition: transform .12s, opacity .15s; border: 0; cursor: pointer;
}
.btn-grad:hover { transform: translateY(-2px); }

.lp-burger {
  display: none; border: 0; background: var(--white);
  width: 48px; height: 48px; border-radius: 14px; cursor: pointer;
  color: var(--ink); font-size: 1.2rem; box-shadow: var(--shadow-soft);
}

/* =============================== HERO =============================== */
.lp-hero { padding: 16px 0 48px; position: relative; }
.lp-hero__grid {
  display: grid; grid-template-columns: 1fr 1.08fr;
  gap: 48px; align-items: start;
}

/* ---- Columna de texto ---- */
.lp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 700; font-size: .98rem;
  padding: 11px 20px; border-radius: 999px; margin-bottom: 16px;
}
.lp-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08; font-weight: 800; letter-spacing: -.02em;
  margin: 0 0 16px;
}
.lp-title .accent {
  background: var(--flame-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-title .heart-doodle {
  display: inline-block; width: .9em; height: .9em; vertical-align: -.08em;
  margin-left: .08em; color: var(--flame-pink);
}
.lp-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft);
  line-height: 1.55; max-width: 540px; margin: 0 0 20px;
}

.lp-features { display: flex; gap: 10px 24px; margin-bottom: 22px; flex-wrap: wrap; }
.lp-feature { display: flex; align-items: center; gap: 13px; }
.lp-feature .ico {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 15px;
  background: var(--pink-soft); color: var(--flame-pink);
  display: grid; place-items: center; font-size: 1.2rem;
}
.lp-feature span:last-child {
  font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.25;
}

.lp-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  width: 100%; max-width: 600px;
  padding: 17px 32px; border-radius: 18px; font-weight: 800; font-size: 1.12rem;
  background: var(--flame-grad); color: #fff;
  box-shadow: 0 18px 38px rgba(255, 70, 120, .4);
  transition: transform .12s, box-shadow .12s; margin-bottom: 14px;
}
.lp-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(255, 70, 120, .5); }
.lp-cta i { transition: transform .15s; }
.lp-cta:hover i { transform: translateX(5px); }

.lp-proof { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-avatars { display: flex; align-items: center; }
.lp-avatars img,
.lp-avatars .more {
  width: 52px; height: 52px; border-radius: 50%; border: 3px solid #fff;
  object-fit: cover; margin-left: -14px; box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.lp-avatars img:first-child { margin-left: 0; }
.lp-avatars .more {
  background: var(--flame-grad); color: #fff; display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 700;
}
.lp-proof p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; max-width: 340px; line-height: 1.45; }
.lp-proof strong { color: var(--ink); font-weight: 800; }

/* ---- Columna visual ---- */
.lp-hero__visual { position: relative; }
.lp-couple {
  width: 100%;
  height: calc(100vh - 140px);
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px; display: block;
}

/* Tarjeta flotante "¡Es un match!" */
.lp-match-card {
  position: absolute; right: -6px; bottom: 26px;
  width: 270px; background: #fff; border-radius: 24px;
  padding: 30px 24px 24px; text-align: center;
  box-shadow: var(--shadow-card);
}
.lp-match-badge {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--flame-pink);
  display: grid; place-items: center; font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(255, 70, 120, .3);
  border: 2px solid var(--pink-soft);
}
.lp-match-card h3 { margin: 6px 0 4px; font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.lp-match-card p { margin: 0 0 18px; color: var(--ink-soft); font-size: .92rem; }
.lp-match-avatars { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.lp-match-avatars img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.lp-match-avatars .heart {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--flame-grad); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(255, 70, 120, .35);
}
.lp-match-cta {
  display: block; width: 100%; padding: 14px; border-radius: 14px;
  background: var(--flame-grad); color: #fff; font-weight: 700; font-size: .98rem;
}

/* =====================================================================
   SECCIÓN "¿CÓMO FUNCIONA?"
   ===================================================================== */
.hiw { padding: 96px 0; background: linear-gradient(180deg, #ffffff 0%, #fff6f9 100%); }
.hiw__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.hiw-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 22px;
}
.hiw__title {
  font-size: clamp(2rem, 4vw, 3.05rem); font-weight: 800; color: var(--ink);
  line-height: 1.12; letter-spacing: -.02em; margin: 0 0 18px;
}
.hiw__title .accent {
  background: var(--flame-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hiw__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); }
.hiw__sub { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.hiw-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  position: relative; margin-top: 56px;
}
.hiw-connector {
  position: absolute; left: 17%; right: 17%; top: 345px;
  border-top: 2px dashed #f7c6d6; z-index: 0;
}
.hiw-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.hiw-card {
  width: 100%; height: 300px; background: #fff; border-radius: 24px;
  box-shadow: 0 22px 50px rgba(27, 34, 64, .09);
  display: grid; place-items: center; padding: 24px; position: relative; overflow: hidden;
}
.hiw-num {
  width: 46px; height: 46px; border-radius: 50%; margin-top: 22px;
  background: var(--flame-grad); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(255, 70, 120, .35);
}
.hiw-step h3 { margin: 22px 0 8px; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.hiw-step p { margin: 0; color: var(--ink-soft); max-width: 300px; line-height: 1.5; }

/* Tarjeta de perfil (paso 1) */
.hiw-profile { position: relative; width: 196px; }
.hiw-profile > img {
  width: 100%; aspect-ratio: 3 / 3.5; object-fit: cover; border-radius: 18px; display: block;
}
.hiw-profile__bubble {
  position: absolute; top: 12px; left: 12px;
  width: 38px; height: 38px; border-radius: 12px 12px 12px 4px;
  background: #fff; color: var(--flame-pink); display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(27,34,64,.12);
}
.hiw-profile__info {
  position: absolute; left: 10px; right: 10px; bottom: -14px;
  background: #fff; border-radius: 14px; padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(27,34,64,.12); text-align: left;
}
.hiw-profile__name { font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.hiw-profile__job { color: var(--ink-soft); font-size: .85rem; margin: 1px 0 5px; }
.hiw-profile__loc { color: var(--flame-pink); font-size: .8rem; font-weight: 600; }

/* Match (paso 2) */
.hiw-match { display: flex; align-items: center; justify-content: center; position: relative; }
.hiw-match__face { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.hiw-match__heart {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 -14px; z-index: 2;
  background: var(--flame-grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(255,70,120,.4); border: 3px solid #fff;
}
.hiw-match__spark { position: absolute; top: -2px; left: 50%; transform: translateX(-50%); color: var(--flame-pink); }

/* Chat (paso 3) */
.hiw-chat { width: 100%; max-width: 260px; position: relative; }
.hiw-msg { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 14px; }
.hiw-msg img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hiw-msg .b { padding: 9px 12px; border-radius: 14px; font-size: .82rem; line-height: 1.35; text-align: left; }
.hiw-msg .b span { display: block; font-size: .66rem; opacity: .65; margin-top: 3px; }
.hiw-msg.them .b { background: #f1f1f5; color: var(--ink); border-bottom-left-radius: 5px; }
.hiw-msg.me { flex-direction: row-reverse; }
.hiw-msg.me .b { background: var(--pink-soft); color: var(--ink); border-bottom-right-radius: 5px; }
.hiw-chat__heart { position: absolute; top: -6px; right: -14px; width: 30px; height: 30px; color: var(--flame-pink); }

/* Banner de seguridad */
.hiw-safety {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--pink-soft); border-radius: 22px; padding: 26px 34px; margin-top: 64px;
}
.hiw-safety__icon {
  width: 60px; height: 60px; border-radius: 18px; flex-shrink: 0;
  background: #fff; color: var(--flame-pink); display: grid; place-items: center; font-size: 1.4rem;
}
.hiw-safety__text { flex: 1; min-width: 220px; }
.hiw-safety__text h4 { margin: 0 0 4px; font-size: 1.12rem; font-weight: 800; color: var(--ink); }
.hiw-safety__text p { margin: 0; color: var(--ink-soft); }
.hiw-safety__link { color: var(--flame-pink); font-weight: 800; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.hiw-safety__link i { transition: transform .15s; }
.hiw-safety__link:hover i { transform: translateX(5px); }

@media (max-width: 900px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 14px; max-width: 420px; margin-inline: auto; }
  .hiw-connector { display: none; }
  .hiw-step { margin-bottom: 26px; }
  .hiw-safety { justify-content: center; text-align: center; }
  .hiw-safety__link { width: 100%; justify-content: center; }
}

/* =============================== RESPONSIVE =============================== */
@media (max-width: 980px) {
  .lp-container { padding: 0 24px; }
  .lp-nav-links, .lp-nav-actions { display: none; }
  .lp-burger { display: grid; place-items: center; }
  .lp-nav { justify-content: space-between; }

  /* Menú móvil desplegable */
  .lp-header.open .lp-nav-links,
  .lp-header.open .lp-nav-actions {
    display: flex; flex-direction: column; width: 100%;
    margin: 0; gap: 14px;
  }
  .lp-header.open .lp-nav {
    flex-wrap: wrap; gap: 18px; padding-top: 8px;
  }
  .lp-header.open .lp-nav-actions { align-items: stretch; }
  .lp-header.open .btn-outline, .lp-header.open .btn-grad { width: 100%; }

  .lp-hero { padding: 32px 0 60px; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .lp-hero__visual { order: -1; max-width: 520px; margin: 0 auto; }
  .lp-couple { height: 360px; max-height: 360px; }
  .lp-title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .lp-cta { max-width: 100%; }
  .lp-match-card { right: 0; width: 240px; }
}

@media (max-width: 560px) {
  .lp-container { padding: 0 18px; }
  .lp-hero { padding: 24px 0 48px; }
  /* En móvil ocultamos el visual de la pareja: el hero queda solo con texto y CTA. */
  .lp-hero__visual { display: none; }
  .lp-hero__grid { gap: 0; }
  .lp-features { gap: 18px; }
  .lp-feature { width: 100%; }
  .lp-proof p { font-size: .95rem; }
}

/* =====================================================================
   SECCIÓN "NÚMEROS QUE IMPORTAN"
   ===================================================================== */
.stats {
  position: relative; overflow: hidden;
  padding: 96px 0 72px;
  background: linear-gradient(180deg, #fdeef4 0%, #fff4f8 60%, #fdeef4 100%);
}

/* Decorativos de fondo */
.stats-deco { position: absolute; pointer-events: none; }
.stats-deco--heart1 {
  top: 48px; left: 48px; width: 28px; color: #ffb3cc; opacity: .7;
}
.stats-deco--heart2 {
  top: 90px; left: 82px; width: 18px; color: #ffb3cc; opacity: .45;
}
.stats-deco--blob {
  top: -60px; right: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, #ffcce0 0%, rgba(255,204,224,0) 70%);
  opacity: .6;
}

/* Cabecera */
.stats__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.stats-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 22px;
}
.stats__title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em; margin: 0 0 16px;
}
.stats__title .accent {
  background: var(--flame-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.stats__sub { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin: 0; }

/* Grid de tarjetas */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px;
}
.stat-card {
  background: #fff; border-radius: 20px; padding: 36px 24px 28px;
  text-align: center; box-shadow: 0 8px 30px rgba(27,34,64,.07);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative;
}
.stat-card__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--pink-soft); color: var(--flame-pink);
  display: grid; place-items: center; font-size: 1.4rem;
}
.stat-card__number {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--ink);
  line-height: 1;
}
.stat-card__label { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.stat-card__bar {
  display: block; width: 32px; height: 3px; border-radius: 99px;
  background: var(--flame-grad); margin-top: 6px;
}

/* Banner de confianza */
.stats-trust {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: var(--pink-soft); border-radius: 22px; padding: 30px 36px;
}
.stats-trust__left {
  display: flex; align-items: flex-start; gap: 20px; flex: 1; min-width: 260px;
}
.stats-trust__shield {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
  background: #fff; color: var(--flame-pink); display: grid; place-items: center;
  font-size: 1.4rem; box-shadow: 0 6px 16px rgba(255,70,120,.15);
}
.stats-trust__left h3 { margin: 0 0 6px; font-size: 1.08rem; font-weight: 800; color: var(--ink); }
.stats-trust__left p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.stats-trust__right {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.stats-trust__feat {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; font-size: .88rem; font-weight: 700; color: var(--ink);
  min-width: 80px;
}
.stats-trust__feat i { font-size: 1.4rem; color: var(--flame-pink); }

/* Sparks decorativos inferiores */
.stats-sparks {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 44px; color: var(--flame-pink); font-size: 1rem;
}
.stats-sparks svg { opacity: .7; }
.stats-sparks i { font-size: 1.1rem; }

/* Responsive stats */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-trust { flex-direction: column; align-items: flex-start; }
  .stats-trust__right { width: 100%; justify-content: space-around; }
}
@media (max-width: 560px) {
  .stats { padding: 64px 0 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { padding: 26px 16px 20px; }
  .stats-trust { padding: 24px 20px; }
  .stats-trust__right { gap: 18px; }
}

/* =====================================================================
   PERFILES DESTACADOS
   ===================================================================== */
.profiles-sec {
  padding: 96px 0 72px;
  background: #fff;
}
.profiles-sec__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.profiles-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 20px;
}
.profiles-sec__title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em; margin: 0 0 14px;
}
.profiles-sec__title .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.profiles-sec__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.profiles-sec__sub { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin: 0; }

/* Wrapper carrusel */
.pc-wrap { position: relative; overflow: hidden; }
.pc-nav {
  position: absolute; z-index: 10; top: 40%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); box-shadow: 0 4px 16px rgba(27,34,64,.14);
  display: grid; place-items: center; font-size: 1rem; transition: box-shadow .15s;
}
.pc-nav:hover { box-shadow: 0 6px 22px rgba(27,34,64,.2); }
.pc-nav--prev { left: -24px; }
.pc-nav--next { right: -24px; }

.pc-track {
  display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.pc-card {
  flex: 0 0 25%; max-width: 25%;
  padding: 0 10px; box-sizing: border-box;
}
.pc-card__photo {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3 / 4;
}
.pc-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.pc-online {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: .78rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; display: flex; align-items: center; gap: 6px;
}
.pc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; }
.pc-photos {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: .78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
}
.pc-card__body { background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 16px 16px; padding: 16px 18px 20px; }
.pc-card__body h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.pc-verified { color: var(--flame-pink); font-size: .75em; margin-left: 4px; }
.pc-meta { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: .82rem; margin-bottom: 10px; gap: 8px; flex-wrap: wrap; }
.pc-meta i { color: var(--flame-pink); margin-right: 3px; }
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pc-tag {
  background: var(--pink-tint); color: var(--ink); font-size: .78rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.pc-actions { display: flex; align-items: center; gap: 10px; }
.pc-like {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--flame-pink); display: grid; place-items: center;
  font-size: 1.1rem; cursor: pointer; transition: background .15s, border-color .15s;
}
.pc-like:hover { background: var(--pink-soft); border-color: var(--flame-pink); }
.pc-view {
  flex: 1; padding: 12px; border-radius: 12px; text-align: center;
  background: var(--flame-grad); color: #fff; font-weight: 700; font-size: .95rem;
}

/* Dots */
.pc-dots { display: flex; justify-content: center; gap: 8px; margin: 24px 0 0; }
.pc-dot-item { width: 10px; height: 10px; border-radius: 50%; background: #e8d5de; transition: background .2s, width .2s; }
.pc-dot-item.active { background: var(--flame-pink); width: 24px; border-radius: 99px; }

/* CTA inferior */
.pc-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--pink-tint); border-radius: 20px; padding: 24px 30px; margin-top: 40px;
}
.pc-cta__icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: var(--pink-soft); color: var(--flame-pink); display: grid; place-items: center; font-size: 1.4rem;
}
.pc-cta__text { flex: 1; min-width: 200px; }
.pc-cta__text strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.pc-cta__text p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.pc-cta__link { color: var(--flame-pink); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.pc-cta__link i { transition: transform .15s; }
.pc-cta__link:hover i { transform: translateX(4px); }

@media (max-width: 900px) {
  .pc-card { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 560px) {
  .profiles-sec { padding: 64px 0 48px; }
  .pc-card { flex: 0 0 85%; max-width: 85%; }
  .pc-nav--prev { left: -8px; }
  .pc-nav--next { right: -8px; }
  .pc-cta { padding: 20px; }
}

/* =====================================================================
   CARACTERÍSTICAS
   ===================================================================== */
.feat-sec {
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #fff4f8 0%, #fdeef4 60%, #fff4f8 100%);
}
.feat-deco { position: absolute; pointer-events: none; }
.feat-deco--heart1 { top: 60px; left: 60px; width: 42px; color: #ffb3cc; opacity: .5; }
.feat-deco--heart2 { top: 100px; left: 108px; width: 22px; color: var(--flame-pink); opacity: .35; }
.feat-deco--dots {
  top: 40px; right: 80px; width: 80px; height: 80px;
  background-image: radial-gradient(var(--flame-pink) 1.5px, transparent 1.5px);
  background-size: 14px 14px; opacity: .25; border-radius: 4px;
}
.feat-deco--blob {
  bottom: -60px; right: -80px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, #ffc8dc 0%, rgba(255,200,220,0) 70%); opacity: .5;
}

.feat-sec__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.feat-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 20px;
}
.feat-sec__title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--ink);
  line-height: 1.1; letter-spacing: -.02em; margin: 0 0 16px;
}
.feat-sec__title .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feat-sec__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.feat-sec__sub { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin: 0; }
.feat-sec__sub .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.feat-card {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  box-shadow: 0 6px 24px rgba(27,34,64,.06);
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: 0 12px 36px rgba(255,70,120,.12); transform: translateY(-3px); }
.feat-card__icon {
  width: 68px; height: 68px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
}
.feat-card__body { flex: 1; }
.feat-card__body h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.feat-card__body p { margin: 0 0 14px; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }
.feat-card__arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--pink-soft); display: grid; place-items: center; font-size: .85rem;
}

.feat-cta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, #fff0f6 0%, #fde8f0 100%);
  border-radius: 24px; padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(255,70,120,.08);
}
.feat-cta__avatars { display: flex; align-items: center; position: relative; flex-shrink: 0; }
.feat-cta__avatars img {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.feat-cta__avatars img:last-of-type { margin-left: -18px; }
.feat-cta__heart {
  width: 28px; height: 28px; border-radius: 50%; background: var(--flame-grad);
  color: #fff; display: grid; place-items: center; font-size: .75rem;
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  border: 2px solid #fff;
}
.feat-cta__text { flex: 1; min-width: 240px; }
.feat-cta__text h3 { margin: 0 0 6px; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.feat-cta__text h3 .heart-doodle { width: .75em; height: .75em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.feat-cta__text p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.feat-cta__text .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.feat-cta__btn { white-space: nowrap; }

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-cta { justify-content: center; text-align: center; }
  .feat-cta__text { text-align: center; }
  .feat-cta__avatars { justify-content: center; }
}
@media (max-width: 560px) {
  .feat-sec { padding: 64px 0 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-cta { padding: 24px 20px; }
}

/* =====================================================================
   VIVE LA EXPERIENCIA
   ===================================================================== */
.app-sec { padding: 96px 0 80px; background: #fff; }
.app-sec__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.app-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 20px;
}
.app-sec__title {
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; color: var(--ink);
  line-height: 1.12; letter-spacing: -.02em; margin: 0 0 16px;
}
.app-sec__title .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.app-sec__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.app-sec__sub { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; margin: 0; }

.app-screens { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.app-screen { display: flex; flex-direction: column; align-items: center; }
.app-screen__head { text-align: center; margin-bottom: 18px; }
.app-screen__icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--pink-soft);
  color: var(--flame-pink); display: grid; place-items: center; font-size: 1.1rem;
  margin: 0 auto 10px;
}
.app-screen__head h3 { margin: 0 0 6px; font-size: 1rem; font-weight: 800; color: var(--ink); }
.app-screen__head p { margin: 0; color: var(--ink-soft); font-size: .85rem; line-height: 1.45; }

/* Phone frame */
.phone-frame {
  width: 100%; max-width: 220px;
  background: #1a1a2e; border-radius: 36px; overflow: hidden;
  border: 6px solid #1a1a2e;
  box-shadow: 0 24px 50px rgba(27,34,64,.22), inset 0 0 0 2px #2d2d4e;
  position: relative;
}
.phone-frame::before {
  content: ''; display: block; width: 80px; height: 10px;
  background: #1a1a2e; border-radius: 0 0 10px 10px;
  margin: 0 auto; position: relative; z-index: 2;
}
.phone-frame__screen {
  background: #fff; min-height: 360px; display: flex; flex-direction: column; overflow: hidden;
}

/* Discover screen */
.phone-frame__screen--discover { background: #fafafa; }
.ph-topbar { display: flex; align-items: center; gap: 6px; padding: 12px 14px 8px; font-weight: 800; font-size: .85rem; color: var(--ink); }
.ph-logo { color: var(--flame-pink); }
.ph-card { position: relative; flex: 1; }
.ph-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; min-height: 220px; }
.ph-card__info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
}
.ph-card__info span { display: block; font-weight: 700; font-size: .85rem; }
.ph-card__info small { font-size: .72rem; opacity: .85; }
.ph-actions { display: flex; justify-content: center; gap: 18px; padding: 12px; background: #fafafa; }
.ph-btn { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.ph-btn--skip { background: #fff; color: #888; }
.ph-btn--like { background: var(--flame-grad); color: #fff; }

/* Match screen */
.phone-frame__screen--match { background: #111; align-items: center; justify-content: center; padding: 20px; }
.ph-match { text-align: center; }
.ph-match__title { color: #fff; font-size: 1.1rem; font-weight: 800; margin: 0 0 4px; }
.ph-match__sub { color: rgba(255,255,255,.7); font-size: .75rem; margin: 0 0 16px; }
.ph-match__faces { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ph-match__faces img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; }
.ph-match__heart {
  width: 32px; height: 32px; border-radius: 50%; background: var(--flame-grad);
  color: #fff; display: grid; place-items: center; font-size: .8rem; margin: 0 -8px; z-index: 1;
}
.ph-match__btn {
  display: block; background: var(--flame-grad); color: #fff; border-radius: 10px;
  padding: 10px 20px; font-weight: 700; font-size: .82rem;
}

/* Chat screen */
.phone-frame__screen--chat { background: #fafafa; }
.ph-chat-header {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: #fff; border-bottom: 1px solid #f0f0f5;
}
.ph-chat-header img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.ph-chat-header strong { display: block; font-size: .82rem; color: var(--ink); }
.ph-online { display: flex; align-items: center; gap: 4px; font-size: .7rem; color: #22c55e; }
.ph-online span { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: inline-block; }
.ph-messages { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.ph-msg { display: flex; flex-direction: column; max-width: 75%; }
.ph-msg span { padding: 8px 10px; border-radius: 12px; font-size: .72rem; line-height: 1.4; }
.ph-msg small { font-size: .6rem; color: #aaa; margin-top: 2px; }
.ph-msg--them span { background: #f0f0f5; color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.ph-msg--them small { align-self: flex-start; }
.ph-msg--me { align-self: flex-end; align-items: flex-end; }
.ph-msg--me span { background: var(--pink-soft); color: var(--ink); border-bottom-right-radius: 4px; }

/* Video screen */
.phone-frame__screen--video { position: relative; min-height: 360px; background: #000; }
.ph-video-bg { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .85; }
.ph-video-pip {
  position: absolute; top: 14px; right: 14px; width: 64px; height: 80px;
  border-radius: 12px; overflow: hidden; border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.ph-video-pip img { width: 100%; height: 100%; object-fit: cover; }
.ph-video-controls {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px;
}
.ph-vbtn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; font-size: .85rem; backdrop-filter: blur(4px); }
.ph-vbtn--end { background: #ef4444; }

/* Plataformas */
.app-platforms {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  background: var(--pink-tint); border-radius: 22px; padding: 28px 36px;
}
.app-platforms__text { display: flex; align-items: center; gap: 16px; }
.app-platforms__icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink-soft); color: var(--flame-pink); display: grid; place-items: center; font-size: 1.3rem;
}
.app-platforms__text strong { display: block; font-weight: 800; color: var(--ink); font-size: 1rem; margin-bottom: 3px; }
.app-platforms__text p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.app-platforms__badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; border-radius: 12px; padding: 10px 18px;
  font-size: .82rem; transition: opacity .15s;
}
.store-badge:hover { opacity: .85; }
.store-badge i { font-size: 1.4rem; }
.store-badge div small { display: block; font-size: .65rem; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.store-badge div strong { display: block; font-size: .92rem; font-weight: 700; }
.store-badge--web { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.store-badge--web small { color: var(--ink-soft); font-size: .78rem; text-transform: none; letter-spacing: 0; }

@media (max-width: 900px) {
  .app-screens { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .app-sec { padding: 64px 0 48px; }
  .app-screens { grid-template-columns: 1fr 1fr; gap: 14px; }
  .phone-frame { max-width: 160px; }
  .phone-frame__screen { min-height: 280px; }
  .app-platforms { padding: 20px; flex-direction: column; align-items: flex-start; }
  .app-platforms__badges { flex-wrap: wrap; }
}

/* =====================================================================
   HISTORIAS REALES
   ===================================================================== */
.test-sec {
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #fdeef4 0%, #fff4f8 60%, #fdeef4 100%);
}
.test-deco { position: absolute; pointer-events: none; }
.test-deco--heart1 { top: 60px; left: 52px; width: 36px; color: #ffb3cc; opacity: .6; }
.test-deco--blob {
  top: -40px; right: -60px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, #ffcce0 0%, rgba(255,204,224,0) 70%); opacity: .55;
}

.test-sec__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.test-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink-soft); color: var(--flame-pink);
  font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 20px;
}
.test-sec__title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em; margin: 0 0 14px;
}
.test-sec__title .accent { background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.test-sec__title .heart-doodle { width: .8em; height: .8em; display: inline-block; vertical-align: -.06em; color: var(--flame-pink); margin-left: .1em; }
.test-sec__sub { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; margin: 0 0 16px; }
.test-bar { display: block; width: 40px; height: 3px; border-radius: 99px; background: var(--flame-grad); margin: 0 auto; }

.test-wrap { position: relative; display: flex; align-items: center; }
.test-nav {
  position: absolute; z-index: 10; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); box-shadow: 0 4px 16px rgba(27,34,64,.14);
  display: grid; place-items: center; font-size: 1rem; transition: box-shadow .15s;
}
.test-nav:hover { box-shadow: 0 6px 22px rgba(27,34,64,.2); }
.test-nav--prev { left: -24px; }
.test-nav--next { right: -24px; }

.test-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); width: 100%; overflow: hidden; }
.test-card {
  min-width: 33.333%; flex-shrink: 0;
  padding: 0 10px;
}
.test-card__photo {
  position: relative; border-radius: 16px 16px 0 0; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--pink-soft);
}
.test-couple-bg { display: flex; width: 100%; height: 100%; }
.test-couple-f, .test-couple-m { width: 50%; height: 100%; object-fit: cover; }
.test-couple-f { object-position: center top; }
.test-couple-m { object-position: center top; }
.test-quote {
  position: absolute; top: 14px; left: 14px;
  width: 38px; height: 38px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; color: var(--flame-pink); font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.test-card__body {
  background: #fff; border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 16px 16px; padding: 20px 20px 24px;
}
.test-card__body h3 { margin: 0 0 10px; font-size: .95rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.test-heart-ico { color: var(--flame-pink); font-size: .85em; }
.test-card__body > p { margin: 0 0 18px; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }

.test-couple { display: flex; align-items: center; gap: 12px; }
.test-couple__avatars { display: flex; }
.test-couple__avatars img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.test-couple__avatars img:last-child { margin-left: -10px; }
.test-couple div strong { display: block; font-size: .88rem; color: var(--ink); }
.test-since { display: block; font-size: .8rem; font-weight: 700; background: var(--flame-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Dots */
.test-dots { display: flex; justify-content: center; gap: 8px; margin: 24px 0 0; }
.test-dot-item { width: 10px; height: 10px; border-radius: 50%; background: #e8d5de; transition: background .2s, width .2s; }
.test-dot-item.active { background: var(--flame-pink); width: 24px; border-radius: 99px; }

/* CTA */
.test-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--pink-soft); border-radius: 22px; padding: 28px 34px; margin-top: 40px;
}
.test-cta__icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--flame-grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem;
}
.test-cta__text { flex: 1; min-width: 220px; }
.test-cta__text strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; font-weight: 800; }
.test-cta__text p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

@media (max-width: 900px) {
  .test-card { min-width: 100%; }
}
@media (max-width: 560px) {
  .test-sec { padding: 64px 0 48px; }
  .test-cta { flex-direction: column; align-items: flex-start; padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
