/* ==========================================================================
   Landing page — Onde Comer & Ganhar (26PG)
   ========================================================================== */

.lp {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 16px 80px;
}

/* ---------------- HERO ---------------- */
.lp-hero {
    position: relative;
    margin: 16px 0 48px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 12% 0%, #0a86c4 0%, transparent 55%),
        radial-gradient(100% 100% at 100% 100%, rgba(141, 233, 105, 0.28) 0%, transparent 55%),
        linear-gradient(155deg, #00699e 0%, #005a87 45%, #04293b 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(4, 41, 59, 0.18), 0 24px 60px rgba(4, 41, 59, 0.28);
}

/* Textura sutil de pontos — dá profundidade sem virar decoração barata */
.lp-hero-glow {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 75%);
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    padding: 56px 28px 44px;
    text-align: center;
}

.lp-hero-title {
    font-size: clamp(2.1rem, 7.5vw, 3.6rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0 0 18px;
    animation: lpEntra 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lp-hero-title span {
    color: var(--secondary);
}

.lp-hero-text {
    font-size: clamp(0.98rem, 2.2vw, 1.12rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    max-width: 48ch;
    margin: 0 auto 30px;
    animation: lpEntra 0.6s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lpEntra {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.lp-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: lpEntra 0.6s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---------------- BOTÕES ---------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.18s ease;
    white-space: nowrap;
}

.lp-btn-primary {
    background: var(--secondary);
    color: #05202c;
    box-shadow: 0 3px 10px rgba(141, 233, 105, 0.3), 0 10px 28px rgba(4, 41, 59, 0.24);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(141, 233, 105, 0.36), 0 16px 36px rgba(4, 41, 59, 0.3);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lp-btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: #d7dee4;
}

.lp-btn-outline:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 39, 51, 0.1);
}

.lp-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ---------------- NÚMEROS ---------------- */
.lp-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    animation: lpEntra 0.6s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lp-number {
    flex: 1 1 100px;
    min-width: 92px;
}

.lp-number strong {
    display: block;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.lp-number span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    line-height: 1.3;
}

.lp-number-wide {
    flex-basis: 160px;
}

/* ---------------- SEÇÕES ---------------- */
.lp-section {
    margin-bottom: 60px;
}

.lp-h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink-strong, #0f2733);
    text-align: center;
    margin: 0 0 8px;
}

.lp-sub {
    text-align: center;
    color: var(--text-secondary);
    margin: 0 0 32px;
    font-size: 0.96rem;
}

/* ---------------- PASSOS ---------------- */
.lp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.lp-step {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px 22px;
    box-shadow: 0 1px 2px rgba(15, 39, 51, 0.05), 0 8px 24px rgba(15, 39, 51, 0.06);
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}

.lp-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 4px rgba(15, 39, 51, 0.06), 0 14px 32px rgba(15, 39, 51, 0.1);
}

.lp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(140deg, var(--secondary), #6fd44b);
    color: #05202c;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 14px;
    box-shadow: 0 3px 8px rgba(141, 233, 105, 0.4);
}

.lp-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--ink-strong, #0f2733);
    letter-spacing: -0.01em;
}

.lp-step p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ---------------- ESTABELECIMENTOS ---------------- */
.lp-estabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.lp-estab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 1px 2px rgba(15, 39, 51, 0.05), 0 4px 14px rgba(15, 39, 51, 0.05);
    min-width: 0;
}

.lp-estab img,
.lp-estab-inicial {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray);
}

.lp-estab-inicial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 90, 135, 0.08);
}

.lp-estab-nome {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-strong, #0f2733);
    line-height: 1.3;
    /* deixa quebrar em duas linhas antes de cortar — nome truncado não ajuda ninguém */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-mais {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin: 18px 0 0;
}

/* ---------------- VÍDEO ---------------- */
.lp-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 39, 51, 0.1), 0 20px 48px rgba(15, 39, 51, 0.14);
}

.lp-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------------- FAQ ---------------- */
.lp-faq {
    max-width: 680px;
    margin: 0 auto;
}

.lp-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(15, 39, 51, 0.05), 0 4px 16px rgba(15, 39, 51, 0.05);
    overflow: hidden;
}

.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink-strong, #0f2733);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: color 0.15s ease;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary:hover {
    color: var(--primary);
}

.lp-faq-item summary i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.85rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-faq-item[open] summary i {
    transform: rotate(45deg);
}

.lp-faq-a {
    padding: 0 20px 18px;
    color: #55636e;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---------------- FECHAMENTO ---------------- */
.lp-final {
    text-align: center;
    background: #fff;
    border-radius: 22px;
    padding: 48px 28px;
    box-shadow: 0 2px 6px rgba(15, 39, 51, 0.06), 0 16px 40px rgba(15, 39, 51, 0.08);
}

.lp-final h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--ink-strong, #0f2733);
}

.lp-final p {
    color: var(--text-secondary);
    margin: 0 0 26px;
}

.lp-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.lp-social:hover {
    color: #E1306C;
}

/* ---------------- BARRA FIXA (mobile) ---------------- */
.lp-sticky {
    display: none;
}

@media (max-width: 640px) {
    .lp-sticky {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 -2px 20px rgba(15, 39, 51, 0.12);
        z-index: 900;
    }

    .lp {
        padding-bottom: 100px;
    }

    .lp-hero-inner {
        padding: 42px 20px 34px;
    }

    .lp-final {
        padding: 36px 20px;
    }
}
