/* ═══════════════════════════════════════════════════════
   LANDING — Etyma (index.html)
   Depende de: shared.css
   ═══════════════════════════════════════════════════════ */


/* ─── SEO static content ─── */

.seo-static-content {
    max-width: 800px;
    margin: 4rem auto 2rem auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
}

.seo-static-content h2,
.seo-static-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.seo-static-content p {
    margin-bottom: 1rem;
}


/* ═══════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════ */

.landing-body {
    background: var(--bg);
}

.landing-nav {
    justify-content: space-between;
}

/* ── Hero Section ── */
.landing-hero {
    max-width: 1180px;
    margin: 4rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: flex-start;
}

.landing-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.landing-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ink-3);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.hero-note {
    font-size: 1.2rem;
    color: var(--ink-4);
    font-family: var(--font-serif);
}

/* ── CTA Final ── */
.landing-bottom-cta {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 20px;
}

.cta-box {
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-box h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--ink);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--ink-3);
    max-width: 500px;
    line-height: 1.6;
}

.cta-large {
    font-size: 1.1rem;
    padding: 16px 36px;
    margin-top: 1rem;
}

/* ── Mockup Visual ── */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.landing-mockup {
    width: 112%;
    transform: scale(0.85);
    transform-origin: top right;
    margin-bottom: -15%;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.mockup-search {
    padding: 24px 24px 0 !important;
    max-width: 100% !important;
}

.mockup-results {
    padding: 24px 24px 32px !important;
    max-width: 100% !important;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE LANDING
   ═══════════════════════════════════════════════════════ */


/* ── 900px · Tablet · Landing ── */

@media (max-width: 900px) {

    .landing-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .hero-actions {
        align-items: center;
        width: 100%;
    }

    .landing-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        justify-content: center;
    }

    .landing-mockup {
        width: 100%;
        transform: scale(0.90);
        transform-origin: top center;
        margin-bottom: -10%;
    }

}


/* ── 600px · Móvil · Landing ── */

@media (max-width: 600px) {

    .landing-mockup {
        width: 100%;
        transform: scale(0.95);
        margin-bottom: -5%;
    }

}