/* lp.ejs — overrides específicos da landing genérica */
:root {
    --brand: #0098DA;
    --brand-lt: #e8f1ff;
    --brand-dk: #0a52cc;
    --accent: #ff6b35;
}

body {
    font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
}

.lp-prod-card .cprice {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand);
    margin: 8px 0 12px;
}

.lp-prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: var(--sp-md);
}

/* Card produto — botões lado a lado (padrão imob) */
.lp-prod-card {
    height: 100%;
}

.lp-prod-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 18px;
    gap: 8px;
}

.lp-prod-card__title {
    text-align: center;
}

.lp-prod-card__price {
    text-align: center;
}

.lp-prod-card__desc {
    flex: 1;
    min-height: 0;
}

.lp-prod-card__actions,
.lp-prod-card .cactions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    width: 100%;
}

.lp-prod-card__actions .bcwpp,
.lp-prod-card__actions .bcview,
.lp-prod-card .cactions .bcwpp,
.lp-prod-card .cactions .bcview {
    min-height: 44px;
    font-size: .84rem;
    justify-content: center;
}

.lp-prod-card__actions .bcview,
.lp-prod-card .cactions .bcview {
    color: #fff !important;
    white-space: nowrap;
}

@media (max-width: 399.98px) {
    .lp-prod-card__actions,
    .lp-prod-card .cactions {
        grid-template-columns: 1fr;
    }

    .lp-prod-card__actions .bcview,
    .lp-prod-card .cactions .bcview {
        width: 100%;
    }
}

.guia-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-prod .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.nav-prod .nav-logo--center {
    justify-self: center;
}

.nav-prod .nav-logo img {
    max-height: 56px;
    width: auto;
}

@media (max-width: 767.98px) {
    .nav-prod .nav-inner {
        grid-template-columns: auto 1fr auto;
    }

    .nav-prod .btn-back {
        font-size: .85rem;
        padding: 8px 12px;
    }
}
