/* =========================
   LoungePrivée Landing — ES
   Paleta: oscuro + acento
   ========================= */

/* 1) Variables (aquí ajustas colores rápido) */
:root{
  --bg: #0b0d10;              /* fondo principal */
  --bg-2: #0f1217;            /* alterno */
  --text: #f1f2f4;            /* blanco roto */
  --muted: #a9b0bc;           /* gris suave */
  --line: rgba(255,255,255,.08);

  /* ACENTO: cámbialo aquí (dorado suave / champagne) */
  --accent: #c7a76a;
  --accent-2: #e0cc9a;

  --card: rgba(255,255,255,.04);
  --shadow: 0 18px 60px rgba(0,0,0,.45);

  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;
}

/* 2) Reset mínimo */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

/* Links */
a{
  color: var(--text);
  text-decoration: none;
}
a:hover{ opacity: .9; }

/* Layout */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.7);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand__name{
  letter-spacing: .8px;
  font-weight: 600;
}
.brand__tag{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.topbar__link{
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* Hero */
.hero{
  position: relative;
  padding: 56px 0 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(800px 300px at 20% 10%, rgba(199,167,106,.18), transparent 60%),
    radial-gradient(800px 380px at 80% 30%, rgba(224,204,154,.10), transparent 60%),
    radial-gradient(900px 500px at 50% 90%, rgba(255,255,255,.06), transparent 60%);
  filter: blur(0px);
  pointer-events: none;
}
.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.hero__content h1{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: .2px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}
.micro{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}
.hero__figure{
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__figure img{
  width: 100%;
  height: 340px;   /* ← antes 360px */
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.92) contrast(1.05);
}
.hero__figure figcaption{
  padding: 10px 14px 12px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: .2px;
}
.muted{ color: var(--muted); margin: 0; }

/* Grids */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid-3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.card__head h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.card__cta{ margin-top: 18px; }

/* Lists */
.list{
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--text);
}
.list li{ margin: 10px 0; color: var(--text); }
.list li::marker{ color: rgba(199,167,106,.75); }

/* Steps */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.steps li{
  margin: 10px 0;
  color: var(--text);
}
.note{
  margin: 18px 0 0;
  color: var(--muted);
  border-left: 2px solid rgba(199,167,106,.5);
  padding-left: 12px;
}

/* Pills */
.pill{
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.pill h4{
  margin: 0 0 6px;
  font-size: 15px;
}

/* Buttons */
.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .08s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #1a140a;
  border-color: rgba(0,0,0,.2);
}
.btn--secondary{
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.btn--secondary:hover{
  border-color: rgba(199,167,106,.55);
}
/* Premium button motion */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--primary:hover{
  box-shadow: 0 10px 24px rgba(198, 167, 107, 0.18);
}

.btn--secondary:hover{
  border-color: rgba(198, 167, 107, 0.65);
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

/* Scarcity */
.scarcity{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.scarcity__badge{
  min-width: 170px;
  background: rgba(199,167,106,.10);
  border: 1px solid rgba(199,167,106,.35);
  border-radius: var(--radius2);
  padding: 16px 14px;
  text-align: center;
}
.scarcity__badge span{
  display: block;
  font-weight: 800;
  letter-spacing: 1.6px;
}
.scarcity__badge small{
  color: var(--muted);
}

/* Final CTA */
.final-cta{
  text-align: center;
  padding: 12px 0 0;
}
.final-cta h2{ margin: 0 0 10px; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(0,0,0,.15);
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer__right{
  display: flex;
  gap: 14px;
}
.footer__right a{
  color: var(--muted);
  font-size: 13px;
}
.footer__dot{ color: rgba(255,255,255,.22); margin: 0 8px; }

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__figure img{ height: 280px; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .scarcity{ flex-direction: column; align-items: flex-start; }
  .footer__inner{ flex-direction: column; align-items: flex-start; }
}
.invite-inline{
  margin-top: 14px;
  max-width: 520px;
}

.invite-label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  opacity:.95;
}

.invite-label span{
  font-weight:400;
  opacity:.7;
}

.invite-input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}

.invite-input::placeholder{
  color: rgba(255,255,255,.55);
}

.invite-help{
  display:block;
  margin-top:6px;
  opacity:.7;
}
.back-link{
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 13px;
  letter-spacing: .2px;
  opacity: .65;
  text-decoration: none;
  color: inherit;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.back-link:hover{
  opacity: .95;
  background: rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.18);
}
.legal-disclaimer{
  margin-top:20px;
  font-size:12px;
  opacity:0.6;
  max-width:900px;
}
.legal-note{
  margin-top:14px;
  max-width:520px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.45;
}
.legal-note strong{ color: rgba(255,255,255,.95); }

.lp-footer{
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}

.lp-footer__line{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

.lp-footer__links{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lp-footer__links a{
  color: rgba(255,255,255,.60);
  text-decoration: none;
}

.lp-footer__links a:hover{
  color: rgba(255,255,255,.85);
  text-decoration: underline;
}

.lp-footer__dot{
  color: rgba(255,255,255,.22);
}

.lp-footer__back{
  font-weight: 600;
}

/* Inputs formulario modelos */

input,
select,
textarea{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  transition: all .2s ease;
}

input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: #c8a96a;
  box-shadow: 0 0 0 2px rgba(200,169,106,0.15);
}
.btn--secondary{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  transition: all .25s ease;
}

.btn--secondary:hover{
  background: rgba(255,255,255,0.08);
}

.hero-image img{
  filter: contrast(1.06) brightness(1.04) saturate(1.05);
}
/* Mejora visual listas sección accesos */

.section ul{
  list-style: none;
  padding-left: 0;
}

.section ul li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.section ul li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a96a;
  font-weight: bold;
}
.section h2::after{
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c8a96a;
  margin-top: 10px;
  border-radius: 2px;
}
.divider-gold{
width:40px;
height:2px;
background:#C6A76B;
margin:10px 0 18px 0;
border-radius:2px;
}
.btn:hover{
  transform: translateY(-3px) !important;
}

/* Premium button motion */

.btn{
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn--primary:hover{
  box-shadow: 0 10px 25px rgba(198,167,107,0.35);
}

.btn--secondary:hover{
  border-color:#C6A76B;
}

/* HERO premium look */

.hero-image img{
  filter: contrast(1.06) brightness(1.04) saturate(1.05);
  transform: scale(1.01);
  transition: all .35s ease;
}

/* HERO premium adjustment */

.hero__figure img{
  filter: contrast(1.06) brightness(1.04) saturate(1.05);
  transform: scale(1.01);
  transition: transform .4s ease, filter .4s ease;
}
/* CTA micro note */

.cta-note{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#C6A76B;
  margin-bottom:12px;
  opacity:.9;
}
.hero-title{
  max-width: none;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
}
@media (min-width:1200px){
.hero-title{
white-space: nowrap;
}
}

.hero-divider{
  width: 64px;
  height: 2px;
  background: #C6A76B;
  margin: 14px 0 18px 0;
  border-radius: 2px;
}

.hero-badge{
  font-size: 13px;
  letter-spacing: .06em;
  color: #C6A76B;
  margin-top: 0;
  margin-bottom: 14px;
  opacity: .9;
}

.hero-meta{
font-size:12px;
color:rgba(255,255,255,0.55);
margin-top:4px;
letter-spacing:.04em;
}

.hero-description{
  margin: 0 0 8px 0;
  color: rgba(255,255,255,0.78);
}

.hero-note{
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.72);
  opacity: .9;
  margin-top: 6px;
  margin-bottom: 18px;
}

.hero-box{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 18px 16px;
}

.hero-box p{
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  opacity: .9;
}

.hero-box p:last-child{
  margin-bottom: 0;
}