/* Tour lead-form step 1 (landing) styles.
   Extracted from the inline <style> in templates/enquiry_form/step1.php.
   Scoped to .lp-* plus a :root token set and a page-level body rule —
   loaded ONLY by step1.php, intentionally kept out of site-wide custom.css. */

:root{
    --navy:#0E2A47;
    --ink:#14181F;
    --body:#374151;
    --muted:#6B7280;
    --muted-2:#9AA1AE;
    --muted-3:#AEB4BF;
    --blue:#2563EB;
    --blue-hover:#1D4ED8;
    --blue-tint:#EEF3FE;
    --gold:#FBBF24;
    --gold-2:#F59E0B;
    --green:#22A559;
    --green-navy:#4ADE80;
    --wa:#25D366;
    --navy-sub:#E4ECF5;
    --navy-muted:#B7C6D9;
    --navy-faint:#8FA3BC;
    --panel:#F6F7F9;
    --bd-1:#E6E8EE;
    --bd-2:#EEF0F3;
    --bd-3:#D8DCE3;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
    font-family:'Figtree', system-ui, -apple-system, sans-serif;
    color:var(--ink);
    background:#fff;
    -webkit-font-smoothing:antialiased;
}
a{ color:inherit; }
img{ max-width:100%; }

.lp{ max-width:1280px; margin:0 auto; background:#fff; overflow:hidden; }

/* ---------- HERO ---------- */
.lp-herowrap{ position:relative; }
.lp-hero{ position:relative; width:100%; height:340px; overflow:hidden; }
.lp-hero-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.lp-hero-fallback{ position:absolute; inset:0; background:var(--navy); }
.lp-hero-overlay{
    position:absolute; inset:0; pointer-events:none;
    background:linear-gradient(180deg, rgba(14,42,71,.62) 0%, rgba(14,42,71,0) 30%, rgba(14,42,71,.2) 55%, rgba(14,42,71,.94) 100%);
}
.lp-hero-top{
    position:absolute; top:0; left:0; right:0;
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 20px;
}
.lp-logo{
    display:flex; align-items:center; gap:7px;
    font-weight:800; font-size:16px; color:#fff; letter-spacing:-0.02em; text-decoration:none;
}
.lp-logo .dot{ width:20px; height:20px; border-radius:50%; border:3px solid #fff; display:inline-block; }
.lp-wa{
    display:flex; align-items:center; gap:6px;
    background:var(--wa); box-shadow:0 4px 14px -4px rgba(37,211,102,.6);
    color:#fff; font-weight:700; font-size:12px; padding:7px 12px; border-radius:999px; text-decoration:none;
    transition:background .15s ease;
}
.lp-wa:hover{ background:#1EBE57; }
.lp-wa i{ color:#fff; font-size:16px; line-height:1; }
.lp-hero-text{ position:absolute; left:22px; right:22px; bottom:22px; }
.lp-eyebrow{
    display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:.1em;
    text-transform:uppercase; color:#fff; background:rgba(255,255,255,.18);
    padding:5px 10px; border-radius:6px; margin-bottom:12px;
}
.lp-h1{
    font-size:35px; line-height:1.04; font-weight:800; color:#fff;
    margin:0 0 12px; letter-spacing:-0.02em; text-shadow:0 2px 20px rgba(14,42,71,.55);
}
.lp-subhead{ display:none; }
.lp-trust{ display:flex; align-items:center; gap:8px; color:#fff; font-size:14px; font-weight:600; }
.lp-trust .stars{ color:var(--gold); font-size:14px; letter-spacing:1px; }
.lp-trust span:last-child{ opacity:.92; }

/* ---------- FORM CARD (navy pull-up on mobile) ---------- */
.lp-formcard{
    position:relative; z-index:2;
    margin:-18px 16px 24px;
    background:var(--navy); border-radius:18px;
    box-shadow:0 22px 46px -18px rgba(14,42,71,.55);
    padding:22px 20px;
}
.lp-formcard .fc-title{ font-size:20px; font-weight:800; color:#fff; margin-bottom:3px; }
.lp-formcard .fc-sub{ font-size:15px; color:var(--navy-muted); margin-bottom:16px; }
.lp-formcard .fc-sub strong{ color:#fff; font-weight:700; }
.lp-formcard label{ display:block; font-size:14px; font-weight:700; color:var(--navy-muted); margin-bottom:7px; }
.lp-formcard .fc-field{ margin-bottom:13px; }
.lp-formcard input{
    width:100%; height:52px; border:1.5px solid transparent; border-radius:11px;
    padding:0 15px; font-size:16px; font-family:inherit; color:var(--ink);
    background:#fff; outline:none;
}
.lp-formcard input:focus{ box-shadow:0 0 0 4px rgba(255,255,255,.28); }
.lp-btn{
    width:100%; height:52px; border:none; border-radius:11px;
    background:var(--blue); color:#fff; font-size:16px; font-weight:700; font-family:inherit;
    cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px;
    transition:background .15s ease;
}
.lp-btn:hover{ background:var(--blue-hover); }
.lp-btn .arrow{ font-size:18px; }
.lp-chips{ display:flex; align-items:center; justify-content:center; gap:14px; margin-top:13px; }
.lp-chips span.chip{ display:flex; align-items:center; gap:5px; font-size:13px; color:var(--navy-faint); font-weight:600; }
.lp-chips span.chip .ok{ color:var(--green-navy); }
.lp-consent{ text-align:center; font-size:12px; color:var(--navy-faint); margin-top:10px; }
.lp-consent a{ color:var(--navy-muted); text-decoration:underline; }

/* ---------- VALUE PROPS ---------- */
.lp-valueprops{ padding:0 22px; }
.lp-vp-list{ display:flex; flex-direction:column; gap:2px; }
.lp-vp{ display:flex; gap:14px; align-items:flex-start; padding:15px 0; border-bottom:1px solid var(--bd-2); }
.lp-vp:last-child{ border-bottom:none; }
.lp-vp .num{
    flex:0 0 auto; width:38px; height:38px; border-radius:11px; background:var(--blue-tint);
    color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800;
}
.lp-vp .vp-title{ font-size:18px; font-weight:800; color:var(--ink); line-height:1.2; }
.lp-vp .vp-body{ font-size:15px; color:var(--muted); line-height:1.45; margin-top:3px; }

/* ---------- SOCIAL PROOF ---------- */
.lp-review{ margin:18px 20px; background:var(--panel); border:1px solid var(--bd-1); border-radius:16px; padding:20px; }
.lp-review-head{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.lp-avatar{ width:40px; height:40px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; }
.lp-review-name{ font-size:15.5px; font-weight:800; color:var(--ink); }
.lp-review-stars{ color:var(--gold-2); font-size:13px; letter-spacing:1px; }
.lp-review-src{ margin-left:auto; font-size:12px; font-weight:600; color:var(--muted-2); }
.lp-review-quote{ font-size:17px; line-height:1.5; color:var(--body); }

/* ---------- QUÉ INCLUYE ---------- */
.lp-incluye{ padding:14px 22px 4px; }
.lp-incluye h2{ font-size:22px; font-weight:800; color:var(--ink); margin:0 0 16px; letter-spacing:-0.01em; }
.lp-incluye-list{ display:flex; flex-direction:column; gap:15px; }
.lp-inc{ display:flex; align-items:flex-start; gap:13px; }
.lp-inc .check{
    flex:0 0 auto; width:24px; height:24px; border-radius:50%; background:var(--blue); color:#fff;
    display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:800;
}
.lp-inc .inc-label{ font-size:16px; color:var(--ink); font-weight:700; line-height:1.3; }
.lp-inc .inc-desc{ display:block; font-size:.85em; font-weight:500; color:var(--muted); margin-top:2px; line-height:1.4; }

/* ---------- FAQ ---------- */
.lp-faq{ padding:22px 22px 0; }
.lp-faq h2{ font-size:20px; font-weight:800; color:var(--ink); margin:0 0 12px; letter-spacing:-0.01em; }
.lp-faq-item{ border-top:1px solid var(--bd-2); padding:14px 0; }
.lp-faq-item:last-child{ border-bottom:1px solid var(--bd-2); }
.lp-faq-q{ font-size:14.5px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.lp-faq-a{ font-size:13px; color:var(--muted); line-height:1.45; }

/* ---------- CIERRE (closing band) ---------- */
.lp-cierre{ margin-top:32px; background:var(--navy); padding:44px 24px 48px; text-align:center; }
.lp-cierre-title{ font-size:26px; line-height:1.15; font-weight:800; color:#fff; letter-spacing:-0.02em; margin:0 auto 14px; max-width:20ch; }
.lp-cierre-sub{ font-size:14.5px; line-height:1.55; color:var(--navy-muted); margin:0 auto 24px; max-width:54ch; }
.lp-cierre-cta{ display:inline-flex; align-items:center; gap:8px; background:var(--blue); color:#fff; font-weight:700; font-size:15px; padding:14px 24px; border-radius:11px; text-decoration:none; transition:background .15s ease; }
.lp-cierre-cta:hover{ background:var(--blue-hover); }
.lp-cierre-cta .arrow{ font-size:18px; }

/* ---------- FOOTER ---------- */
.lp-footer{ margin-top:0; padding:26px 24px; text-align:center; background:var(--panel); border-top:1px solid var(--bd-2); }
.lp-footer .copy{ font-size:12.5px; color:var(--muted-3); margin-bottom:12px; }
.lp-footer .links{ display:flex; flex-direction:column; align-items:center; gap:9px; font-size:12px; }
.lp-footer .links a{ color:var(--muted); text-decoration:none; font-weight:600; }
.lp-footer .links a:hover{ text-decoration:underline; }

/* ===================== DESKTOP ===================== */
@media (min-width:880px){
    .lp-hero{ height:496px; }
    .lp-hero-overlay{
        background:linear-gradient(105deg, rgba(14,42,71,.9) 0%, rgba(14,42,71,.64) 38%, rgba(14,42,71,.12) 70%, rgba(14,42,71,0) 100%);
    }
    .lp-hero-top{ padding:22px 48px; }
    .lp-logo{ font-size:20px; gap:9px; }
    .lp-logo .dot{ width:24px; height:24px; border-width:4px; }
    .lp-wa{ font-size:14px; padding:9px 16px; gap:8px; }
    .lp-wa i{ font-size:19px; }

    .lp-hero-text{ left:48px; right:auto; top:124px; bottom:auto; max-width:560px; }
    .lp-eyebrow{ font-size:12px; letter-spacing:.08em; padding:6px 12px; margin-bottom:20px; }
    .lp-h1{ font-size:58px; line-height:1.02; margin-bottom:18px; letter-spacing:-0.025em; text-shadow:0 2px 30px rgba(14,42,71,.45); }
    .lp-subhead{ display:block; font-size:19px; line-height:1.5; color:var(--navy-sub); margin:0 0 22px; max-width:430px; }
    .lp-trust{ font-size:15px; gap:10px; }
    .lp-trust .stars{ font-size:16px; }

    /* floating white form card */
    .lp-formcard{
        position:absolute; right:48px; top:92px; width:364px; margin:0; z-index:3;
        background:#fff; border-radius:18px; box-shadow:0 30px 70px -20px rgba(14,42,71,.5);
        padding:28px 26px;
    }
    .lp-formcard .fc-title{ font-size:19px; color:var(--ink); }
    .lp-formcard .fc-sub{ font-size:13.5px; color:var(--muted); margin-bottom:20px; }
    .lp-formcard .fc-sub strong{ color:var(--ink); }
    .lp-formcard label{ font-size:13px; color:var(--body); }
    .lp-formcard .fc-field{ margin-bottom:14px; }
    .lp-formcard input{ height:52px; border:1.5px solid var(--bd-3); }
    .lp-formcard input:focus{ border-color:var(--blue); box-shadow:0 0 0 4px rgba(37,99,235,.12); }
    .lp-btn{ height:54px; }
    .lp-chips{ gap:16px; margin-top:14px; }
    .lp-chips span.chip{ font-size:12px; color:var(--muted-2); }
    .lp-chips span.chip .ok{ color:var(--green); }
    .lp-consent{ color:var(--muted-2); }
    .lp-consent a{ color:var(--muted); }

    /* value props 3-up */
    .lp-valueprops{ padding:44px 48px 36px; }
    .lp-vp-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
    .lp-vp{ display:block; padding:0; border-bottom:none; border-top:none; padding-top:16px; }
    .lp-vp .num{ width:40px; height:40px; font-size:19px; margin-bottom:14px; }
    .lp-vp .vp-title{ font-size:19px; margin-bottom:6px; letter-spacing:-0.01em; }
    .lp-vp .vp-body{ font-size:14.5px; line-height:1.5; margin-top:0; }

    /* social proof — centered testimonial */
    .lp-social{ padding:28px 48px 8px; }
    .lp-review{ margin:0 auto; max-width:820px; padding:26px; }
    .lp-avatar{ width:44px; height:44px; font-size:17px; }
    .lp-review-name{ font-size:15px; }
    .lp-review-stars{ font-size:13px; }
    .lp-review-src{ font-size:12px; }
    .lp-review-quote{ font-size:18px; }

    /* qué incluye — full-width 2-col grid */
    .lp-incluye{ padding:28px 48px 12px; }
    .lp-incluye h2{ font-size:24px; margin-bottom:22px; }
    .lp-incluye-list{ display:grid; grid-template-columns:1fr 1fr; column-gap:48px; row-gap:20px; align-items:start; }
    .lp-inc .inc-label{ font-size:15.5px; }

    /* FAQ 3-up */
    .lp-faq{ padding:8px 48px 20px; }
    .lp-faq h2{ font-size:22px; margin-bottom:8px; }
    .lp-faq-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
    .lp-faq-item{ border-top:1px solid var(--bd-2); border-bottom:none !important; padding:14px 0 0; }
    .lp-faq-q{ font-size:15px; margin-bottom:5px; }
    .lp-faq-a{ font-size:14px; line-height:1.5; }

    /* footer row */
    .lp-cierre{ margin-top:44px; padding:66px 48px 70px; }
    .lp-cierre-title{ font-size:42px; margin-bottom:18px; max-width:24ch; }
    .lp-cierre-sub{ font-size:18px; line-height:1.6; margin-bottom:30px; max-width:62ch; }
    .lp-cierre-cta{ font-size:16px; padding:15px 28px; }

    .lp-footer{ margin-top:0; padding:24px 48px; display:flex; align-items:center; justify-content:space-between; gap:18px; text-align:left; }
    .lp-footer .copy{ font-size:12px; margin-bottom:0; }
    .lp-footer .links{ flex-direction:row; align-items:center; gap:18px; font-size:13px; }
}
