/* ===== LANDING ISOLADA DO CORE ===== */

body.landing-page {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

/* remove qualquer container herdado */
body.landing-page > * {
    max-width: none !important;
}

/* ===== HEADER ===== */

.lp-header {
    width: 100vw;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.lp-header-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    height: 72px;
    width: 100%;
}

/* brand coluna 2 */
.lp-brand {
    grid-column: 2 / span 2;
    display: flex;
    align-items: center;
}

.lp-brand img {
    height: 64px;
}

/* frase central */
.lp-headline {
    grid-column: 4 / span 6;
    text-align: center;
    font-weight: 800;
    font-size: 26px;
    white-space: nowrap;
}

/* botões direita */
.lp-actions {
    grid-column: 11 / span 2;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: calc(100vw / 12);
}

/* ===== HERO ===== */

.lp-hero {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px calc(100vw / 12);
    box-sizing: border-box;
}

/* lado esquerdo */
.lp-left h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* ===== MATRIZ 3x3 ===== */

.lp-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

.lp-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
}

/* ================= FOOTER PROFISSIONAL ================= */

.lp-footer {
    width: 100vw;
    background: #f4f6f9;
    padding: 50px calc(100vw / 12) 30px;
    box-sizing: border-box;
    border-top: 1px solid #e5e7eb;
}

.lp-footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.lp-footer-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    color: #1f2937;
}

.lp-footer-muted {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.lp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #374151;
    transition: 0.2s ease;
}

.lp-footer-links a:hover {
    color: #111827;
}

.lp-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}


/* ===== RESPONSIVO ===== */

@media (max-width: 1000px) {
    .lp-hero {
        grid-template-columns: 1fr;
    }
    .lp-headline {
        font-size: 20px;
    }
}


/* ================= MOBILE BUTTON REFINEMENT ================= */

@media (max-width: 760px){

    /* Ajuste estrutural do header no mobile */
    .lp-header-grid{
        grid-template-columns: 1fr;
        height: auto;
        padding: 10px 16px;
        gap: 8px;
        text-align: center;
    }

    .lp-brand{
        grid-column: auto;
        justify-content: center;
    }

    .lp-headline{
        grid-column: auto;
        white-space: normal;
        font-size: 18px;
        line-height: 1.3;
    }

    .lp-actions{
        grid-column: auto;
        justify-content: center;
        padding-right: 0;
        gap: 8px;
    }

    /* Botões do header menores e proporcionais */
    .lp-actions .btn{
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 8px;
        min-width: 90px;
    }

    /* CTA principal mais elegante no mobile */
    .lp-cta{
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }

    .lp-cta .btn{
        width: 100%;
        padding: 10px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

}
