/* landing.css — landing pública de margarita.okmystay.com.
   Estructura tomada de la landing de Tulipán; paleta girada a girasol/
   marigold (amarillo-naranja) para diferenciarla visualmente.
   Tema oscuro por defecto. */

/* Re-hospedada bajo www.okmystay.com/whatsapp. Las variables viven en el
   wrapper .mod-whatsapp (no en :root) para no pisar la paleta del site
   principal — en especial --coral, que aquí es ámbar (#FF9F1C) y en el site
   principal es coral (#F04464). Las custom properties heredan por DOM. El
   chrome (reset, nav, footer) lo aporta base.html. */
.mod-whatsapp {
    min-height: 100vh;
    background: #0d0d14;
    color: rgba(255, 255, 255, 0.92);
    /* Paleta Margarita: ámbar/girasol. Nombres --coral por paridad. */
    --coral: #FF9F1C;
    --coral-light: #FFC857;
    --purple: #667eea;
    --purple-dark: #764ba2;
    --dark: #0d0d14;
    --dark-2: #16161f;
    --dark-3: #1c1c28;
    --text: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.62);
    --text-dim: rgba(255, 255, 255, 0.45);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --white: #ffffff;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
}

/* Reset global, <html>, <body>, <a> y NAV: los aporta base.html + el
   landing.css principal. Eliminados aquí para no duplicar ni pisar el chrome.
   ===== HERO ===== */
.lp-hero {
    background: #111120;
    color: var(--text);
    padding: 66px 20px 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 65% at 10% 60%, rgba(102,126,234,0.38) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 90% 10%, rgba(255, 159, 28,0.32) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 90%, rgba(118,75,162,0.28) 0%, transparent 55%);
    pointer-events: none;
}

.lp-hero-content {
    max-width: 820px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lp-hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin: 0 0 22px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.12;
    color: #fff;
}

.lp-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--coral) 0%, #FFE066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero badge (copia literal de www.okmystay.com) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 159, 28, 0.13);
    border: 1px solid rgba(255, 159, 28, 0.28);
    color: #FFD580;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 26px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.28);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.28); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 159, 28, 0.12); }
}

.lp-hero-sub {
    font-size: clamp(18px, 2.6vw, 26px);
    color: var(--text);
    margin: -6px auto 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
    max-width: 720px;
}

.lp-hero-lead {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-muted);
    margin: 0 auto 36px;
    max-width: 660px;
    line-height: 1.7;
}

.lp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(255, 159, 28,0.32);
    transition: all 0.25s ease;
}

.lp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 159, 28,0.45);
    text-decoration: none;
    color: white;
}

/* SECTIONS */
.lp-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 20px;
}

.lp-section-alt {
    background: var(--dark-2);
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lp-section-alt > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lp-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin: 0 0 50px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
}

/* STEPS */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.lp-step {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.lp-step:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.lp-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(255, 159, 28,0.32);
}

.lp-step h3 {
    margin: 0 0 12px;
    font-size: 19px;
    color: #fff;
    font-weight: 700;
}

.lp-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Nombres de producto (Margarita, Tulipán) */
.brand {
    color: #fff;
    font-weight: 700;
}

/* LOOP — sección Margarita */
.lp-section-lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 720px;
    margin: -28px auto 56px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lp-loop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 60px;
}

.lp-loop-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 32px 28px;
    text-align: left;
}

.lp-loop-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.35rem;
    color: #fff;
}

.lp-loop-icon-wa  { background: linear-gradient(135deg, #25d366, #128c7e); }
.lp-loop-icon-key { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.lp-loop-icon-eye { background: linear-gradient(135deg, var(--coral), var(--coral-light)); }

.lp-loop-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.lp-loop-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Mini-widget que imita el panel admin */
.lp-panel-widget {
    background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.lp-panel-widget-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.lp-panel-widget-num {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--coral), #FFE066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-panel-widget-rows {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.lp-panel-widget-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(13, 13, 20, 0.6);
    align-items: center;
    font-size: 0.88rem;
}

.lp-panel-widget-when {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.lp-panel-widget-who {
    color: #fff;
    font-weight: 500;
}

.lp-panel-widget-status {
    color: var(--coral-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lp-panel-widget-caption {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.55;
    margin-top: 4px;
    font-style: italic;
}

@media (max-width: 600px) {
    .lp-panel-widget-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .lp-panel-widget-status { text-align: left; }
}

/* BENEFITS (grid 3x2 con iconos) */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-benefit {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 26px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lp-benefit:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.lp-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(102, 126, 234, 0.18));
    border: 1px solid rgba(255, 159, 28, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--coral-light);
}

.lp-benefit h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.lp-benefit p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Síntesis al final de Beneficios — la frase que cierra la idea */
.lp-benefits-sintesis {
    text-align: center;
    margin: 56px auto 0;
    max-width: 760px;
    font-size: clamp(18px, 2.4vw, 24px);
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 1.5;
}

/* CTA SECTION (copia literal de www.okmystay.com) */
.cta-section {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 45%, var(--coral) 100%);
    color: white;
    text-align: center;
    padding: 108px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="p" width="28" height="28" patternUnits="userSpaceOnUse"><circle cx="14" cy="14" r="1" fill="white" opacity="0.07"/></pattern></defs><rect width="200" height="200" fill="url(%23p)"/></svg>');
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.btn-white {
    background: white;
    color: var(--purple-dark);
    padding: 17px 38px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
    text-decoration: none;
    color: var(--purple-dark);
}

@media (max-width: 600px) {
    .cta-section { padding: 72px 20px; }
    .cta-section h2 { font-size: 1.7rem; }
    .btn-white { padding: 14px 28px; font-size: 0.95rem; }
}

/* FOOTER — lo aporta base.html (el <footer> global del site). */
