/* ===== SpeedDatesRD — Landing de marketing ===== */
.lp { --maxw: 1140px; }
.lp img { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.lp section { position: relative; }
.lucide { width: 1em; height: 1em; vertical-align: -0.125em; stroke-width: 2; }

/* --- Nav --- */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,14,39,.72); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav .logo-w { display: flex; align-items: center; gap: 10px; }
.nav .logo-w img { width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 0 16px rgba(255,45,149,.4); }
.nav .logo-w strong { font-family: 'Righteous', sans-serif; font-size: 19px; }
.nav .menu { display: flex; align-items: center; gap: 26px; }
.nav .menu a { color: var(--muted); font-size: 15px; font-weight: 600; }
.nav .menu a:hover { color: var(--cyan); text-decoration: none; }
.nav .menu .btn { width: auto; padding: 10px 20px; }
@media (max-width: 820px){ .nav .menu a.navlink { display:none; } }

/* --- Buttons (hereda de app.css .btn) --- */
.btn-lg { width: auto; padding: 16px 28px; font-size: 16px; }
.btn-outline { width: auto; padding: 15px 26px; background: transparent; border: 1px solid var(--cyan); color: var(--cyan); box-shadow: none; }
.btn-outline:hover { background: rgba(0,229,255,.1); text-decoration: none; }

/* --- Hero --- */
.hero { padding: 74px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
    color: var(--cyan); border: 1px solid rgba(0,229,255,.35); background: rgba(0,229,255,.08);
    padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; letter-spacing: .5px;
}
.hero h1 { font-family: 'Righteous', sans-serif; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; margin: 0 0 18px; }
.hero h1 .g { background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 0 28px; line-height: 1.6; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual .frame {
    border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(176,38,255,.25), 0 0 0 1px rgba(0,229,255,.08);
}
.hero-visual .frame img { width: 100%; height: 460px; object-fit: cover; }
.hero-visual .float {
    position: absolute; background: rgba(20,26,60,.92); border: 1px solid var(--line);
    border-radius: 16px; padding: 14px 16px; backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,.4);
    display: flex; align-items: center; gap: 12px;
}
.hero-visual .float .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.hero-visual .float.one { top: 22px; left: -18px; }
.hero-visual .float.two { bottom: 22px; right: -18px; }
.hero-visual .float .n { font-family: 'Righteous', sans-serif; font-size: 18px; }
.hero-visual .float .l { font-size: 11px; color: var(--muted); }
@media (max-width: 900px){
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual .frame img { height: 340px; }
    .hero-visual .float.one { left: 8px; } .hero-visual .float.two { right: 8px; }
}

/* --- Section headings --- */
.sec { padding: 66px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.sec-head .kicker { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.sec-head h2 { font-family: 'Righteous', sans-serif; font-size: clamp(26px, 4vw, 40px); margin: 10px 0 12px; }
.sec-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step {
    background: linear-gradient(180deg, rgba(20,26,60,.7), rgba(13,16,48,.7));
    border: 1px solid var(--line); border-radius: 18px; padding: 24px 18px; text-align: center;
}
.step .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 14px;
    font-size: 24px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--violet)); box-shadow: 0 8px 22px rgba(255,45,149,.35); }
.step:nth-child(even) .ico { background: linear-gradient(135deg, var(--cyan), #2b7cff); box-shadow: 0 8px 22px rgba(0,229,255,.3); }
.step h4 { margin: 0 0 6px; font-size: 16px; }
.step p { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.5; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }

/* --- Values --- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value { display: flex; gap: 14px; background: rgba(20,26,60,.5); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.value .ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px;
    color: var(--cyan); border: 1px solid rgba(0,229,255,.35); background: rgba(0,229,255,.08); }
.value h4 { margin: 0 0 4px; font-size: 16px; }
.value p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 900px){ .values { grid-template-columns: 1fr; } }

/* --- Gallery --- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery figure { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; }
.gallery figcaption { position: absolute; left: 12px; bottom: 10px; font-size: 13px; font-weight: 600; text-shadow: 0 2px 8px #000; }
@media (max-width: 820px){ .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; } .gallery .tall { grid-row: span 1; } }

/* --- Rules --- */
.rules { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.rule { background: rgba(20,26,60,.55); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.rule .rhead { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rule .rhead .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--pink);
    border: 1px solid rgba(255,45,149,.4); background: rgba(255,45,149,.1); }
.rule h4 { margin: 0; font-size: 17px; }
.rule ul { margin: 0; padding-left: 18px; }
.rule li { color: var(--muted); font-size: 14px; line-height: 1.7; }
.rule li strong { color: var(--text); }
@media (max-width: 820px){ .rules { grid-template-columns: 1fr; } }

/* --- Events strip --- */
.event-card { display:flex; align-items:center; justify-content:space-between; gap:16px;
    background: linear-gradient(90deg, rgba(255,45,149,.08), rgba(0,229,255,.06));
    border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin-bottom: 12px; flex-wrap: wrap; }
.event-card .when { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* --- CTA band --- */
.cta-band { text-align: center; padding: 70px 0; position: relative; overflow: hidden; }
.cta-band .glow { position:absolute; inset:0; background:
    radial-gradient(600px 300px at 50% 0%, rgba(176,38,255,.25), transparent 70%); pointer-events:none; }
.cta-band h2 { font-family: 'Righteous', sans-serif; font-size: clamp(28px,4vw,44px); margin: 0 0 14px; }
.cta-band p { color: var(--muted); font-size: 17px; margin: 0 auto 28px; max-width: 520px; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 20px; }
.footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .logo-w { display:flex; align-items:center; gap:10px; }
.footer .logo-w img { width: 34px; height: 34px; border-radius: 9px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--cyan); }
.footer .social { display:flex; gap:16px; align-items:center; font-size: 22px; }
