/* BV PROFESSIONAL BRAND COMPATIBILITY */
/* A camada principal foi mantida por compatibilidade; brand.css centraliza tokens e novos componentes. */


/**
 * =========================================================
 * ARQUIVO : /assets/css/style.css
 * PROJETO: BomVendedor
 * MÓDULO : Estilo global público consolidado
 * VERSÃO : V9 CONSOLIDADO REAL
 * AUTOR  : OpenAI + Rodrigo
 * DATA   : 01/04/2026
 * =========================================================
 * OBJETIVO:
 * - Consolidar o front público em um único CSS estável
 * - Preservar a estrutura atual do projeto
 * - Cobrir Home, Categorias, Ofertas, Produto, Oferta,
 *   Contato, páginas legais e páginas auth
 * - Eliminar duplicações e conflitos de blocos anteriores
 * - Manter consistência visual e responsividade premium
 *
 * REGRAS:
 * - Não altera HTML/PHP
 * - Não depende de CSS inline
 * - Header/Footer continuam no hfstyle.css
 * - Mantém o padrão visual premium do BomVendedor
 * =========================================================
 */


/* =========================================================
   TOKENS GLOBAIS
========================================================= */
:root {
    --bv-bg: #eef3f9;
    --bv-bg-soft: #f7fafe;
    --bv-card: #ffffff;
    --bv-card-2: #fbfdff;

    --bv-text: #0f172a;
    --bv-text-soft: #475569;
    --bv-text-muted: #64748b;
    --bv-text-light: #94a3b8;
    --bv-white: #ffffff;

    --bv-primary: #2563eb;
    --bv-primary-2: #3b82f6;
    --bv-primary-soft: #dbeafe;

    --bv-success: #10b981;
    --bv-success-2: #059669;
    --bv-success-soft: #dcfce7;

    --bv-warning: #f59e0b;
    --bv-warning-soft: #fef3c7;

    --bv-danger: #ef4444;
    --bv-danger-soft: #fee2e2;

    --bv-border: #dfe7f1;
    --bv-border-strong: #c9d6e5;

    --bv-radius-sm: 12px;
    --bv-radius-md: 16px;
    --bv-radius-lg: 20px;
    --bv-radius-xl: 24px;
    --bv-radius-2xl: 28px;
    --bv-radius-pill: 999px;

    --bv-shadow-xs: 0 2px 10px rgba(15, 23, 42, 0.03);
    --bv-shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.05);
    --bv-shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
    --bv-shadow-lg: 0 24px 54px rgba(15, 23, 42, 0.12);

    --bv-transition: all 0.18s ease;
    --bv-container: min(1280px, calc(100% - 32px));
}


/* =========================================================
   RESET / BASE GLOBAL
========================================================= */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

main {
    display: block;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #edf2f8 0%, #f4f7fb 100%);
    color: var(--bv-text);
    line-height: 1.5;
}

section {
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

p {
    margin-top: 0;
}

strong {
    font-weight: 800;
}

.container {
    width: var(--bv-container);
    margin: 0 auto;
}


/* =========================================================
   COMPONENTES UTILITÁRIOS
========================================================= */
.bv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--bv-radius-pill);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: var(--bv-transition);
    white-space: nowrap;
}

.bv-btn--primary {
    color: var(--bv-white);
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.bv-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.bv-btn--secondary {
    color: var(--bv-primary);
    background: #ffffff;
    border: 1px solid var(--bv-border);
    box-shadow: var(--bv-shadow-xs);
}

.bv-btn--secondary:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.bv-btn--offer {
    width: 100%;
    color: var(--bv-white);
    background: linear-gradient(135deg, var(--bv-success) 0%, var(--bv-success-2) 100%);
    box-shadow: 0 14px 28px rgba(5, 150, 105, 0.16);
}

.bv-btn--offer:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.22);
}

.home-highlight-pill,
.bv-legal-hero__badge,
.bv-categories-hero__badge,
.bv-categories-highlight__badge,
.bv-ofertas-hero__badge,
.bv-ofertas-highlight__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--bv-radius-pill);
    font-size: 0.74rem;
    font-weight: 900;
}


/* =========================================================
   ESTRUTURA GERAL
========================================================= */
.bv-page {
    padding-top: 26px;
    padding-bottom: 48px;
}

.bv-home {
    display: block;
}

.bv-home > .container {
    width: var(--bv-container);
    margin: 0 auto;
}

.home-section,
.home-ad-section,
.home-share-section {
    margin-bottom: 28px;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-section-head > div {
    min-width: 0;
}

.home-section-title {
    margin: 0;
    color: var(--bv-text);
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.home-section-subtitle {
    margin: 6px 0 0;
    color: var(--bv-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-section-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--bv-radius-pill);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--bv-border);
    color: var(--bv-primary);
    font-size: 0.84rem;
    font-weight: 800;
    transition: var(--bv-transition);
    white-space: nowrap;
    box-shadow: var(--bv-shadow-xs);
}

.home-section-link:hover {
    background: #ffffff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.home-empty-state,
.bv-categories-empty,
.bv-ofertas-empty,
.bv-category-empty,
.bv-product-empty {
    padding: 24px;
    border-radius: var(--bv-radius-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px dashed #cbd5e1;
    color: var(--bv-text-muted);
    text-align: center;
    font-size: 0.96rem;
    line-height: 1.7;
    box-shadow: var(--bv-shadow-xs);
}


/* =========================================================
   HOME - HERO
========================================================= */
.home-hero-section {
    margin-bottom: 20px;
}

.home-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
    gap: 24px;
    align-items: stretch;
    padding: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.13), transparent 34%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    border: 1px solid var(--bv-border);
    box-shadow: var(--bv-shadow-sm);
    position: relative;
    overflow: hidden;
}

.home-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.home-hero-content,
.home-hero-showcase {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: var(--bv-radius-pill);
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
    font-size: 0.8rem;
    font-weight: 800;
    width: fit-content;
}

.home-eyebrow__icon {
    font-size: 0.9rem;
}

.home-hero-title {
    max-width: 680px;
    margin: 0 0 12px;
    color: var(--bv-text);
    font-size: clamp(2.15rem, 3vw, 3.45rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-hero-text {
    max-width: 650px;
    margin: 0 0 18px;
    color: var(--bv-text-soft);
    font-size: 0.98rem;
    line-height: 1.72;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.home-hero-stats--three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.home-stat-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 86px;
    height: 100%;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e3ebf4;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.home-stat-box__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(180deg, #edf5ff 0%, #dcecff 100%);
    font-size: 1rem;
}

.home-stat-box__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home-stat-box__body strong {
    font-size: 1rem;
    line-height: 1.08;
    font-weight: 900;
    color: #0f172a;
}

.home-stat-box__body span {
    font-size: 0.73rem;
    line-height: 1.35;
    color: #64748b;
}

.home-hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.home-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dfe7f1;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.home-hero-trust-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
}


/* =========================================================
   HOME - VITRINE HERO
========================================================= */
.home-showcase-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e1e9f2;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.home-showcase-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    overflow: hidden;
    border: 1px solid #edf3fa;
}

.home-showcase-card__media img {
    width: 100%;
    height: 228px;
    object-fit: contain;
}

.home-showcase-card__content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.home-showcase-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.home-showcase-card__store {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--bv-shadow-xs);
}

.home-showcase-card__store img {
    max-width: 84%;
    max-height: 84%;
    object-fit: contain;
}

.home-highlight-pill {
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.home-showcase-card__title {
    margin: 0 0 10px;
    font-size: 1.04rem;
    line-height: 1.42;
    font-weight: 900;
    color: #0f172a;
}

.home-showcase-card__prices {
    margin-bottom: 10px;
}

.home-showcase-card__old-price {
    display: block;
    color: #94a3b8;
    font-size: 0.82rem;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.home-showcase-card__price {
    display: block;
    font-size: 1.9rem;
    line-height: 1.04;
    font-weight: 900;
    color: #0f172a;
}

.home-showcase-card__text {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9rem;
}


/* =========================================================
   HOME - BADGES
========================================================= */
.home-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.home-badges--compact {
    margin-bottom: 14px;
}

.home-badges--spaced {
    margin-bottom: 14px;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: var(--bv-radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.home-badge--primary {
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
}

.home-badge--success {
    background: var(--bv-success-soft);
    color: #15803d;
}

.home-badge--soft {
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-muted);
}


/* =========================================================
   HOME - SHARE BAR
========================================================= */
.home-share-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dfe7f1;
    box-shadow: var(--bv-shadow-xs);
}

.home-share-bar__label {
    font-size: 0.84rem;
    font-weight: 900;
    color: #334155;
}

.home-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    color: #334155;
    font-size: 0.83rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.home-share-btn:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.home-share-btn__svg {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-share-btn__svg svg {
    width: 18px;
    height: 18px;
    display: block;
}


/* =========================================================
   HOME - ADS
========================================================= */
.home-ad-placeholder,
.bv-categories-ad-slot__placeholder,
.bv-ofertas-ad-slot__placeholder,
.bv-category-ad-slot__placeholder,
.bv-product-ad-slot__placeholder,
.bv-offer-ad-slot__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 122px;
    padding: 20px;
    border-radius: 24px;
    border: 2px dashed #ccd6e2;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    color: var(--bv-text-muted);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
}


/* =========================================================
   HOME - CATEGORIAS
========================================================= */
.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.home-category-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 126px;
    height: 100%;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.home-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    border-color: #bfdbfe;
}

.home-category-card__thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.home-category-card__thumb img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.home-category-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.home-category-card__body strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
}

.home-category-card__body small {
    display: block;
    margin-bottom: 5px;
    font-size: 0.76rem;
    line-height: 1.3;
    color: #2563eb;
    font-weight: 800;
}

.home-category-card__body em {
    display: block;
    font-size: 0.79rem;
    line-height: 1.48;
    color: #64748b;
    font-style: normal;
}


/* =========================================================
   HOME - PRODUTOS
========================================================= */
.home-products-grid,
.home-products-grid--eight {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.home-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    border-color: #bfdbfe;
}

.home-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    overflow: hidden;
    border: 1px solid #edf3fa;
}

.home-product-card__image img {
    width: 100%;
    height: 186px;
    object-fit: contain;
}

.home-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.home-product-card__title {
    min-height: 3em;
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: 0.96rem;
    line-height: 1.45;
    font-weight: 800;
}

.home-product-card__title a {
    color: inherit;
}

.home-product-card__text {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--bv-text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.home-product-card__price {
    margin-bottom: 8px;
    color: var(--bv-text);
    font-size: 1.55rem;
    line-height: 1.08;
    font-weight: 900;
}

.home-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.home-product-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: var(--bv-radius-pill);
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.home-product-card .bv-btn--offer {
    margin-top: auto;
}


/* =========================================================
   HOME - OFERTA HERO
========================================================= */
.home-offers-section {
    margin-bottom: 30px;
}

.home-offer-hero {
    display: grid;
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at right top, rgba(16, 185, 129, 0.09), transparent 32%),
        linear-gradient(90deg, #ffffff 0%, #f5fbf8 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    margin-bottom: 18px;
}

.home-offer-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 228px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    overflow: hidden;
    border: 1px solid #edf3fa;
}

.home-offer-hero__image img {
    width: 100%;
    height: 206px;
    object-fit: contain;
}

.home-offer-hero__content h3 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: clamp(1.6rem, 2vw, 2.15rem);
    line-height: 1.18;
    font-weight: 900;
}

.home-offer-hero__content p {
    margin: 0 0 14px;
    color: var(--bv-text-muted);
    line-height: 1.7;
}

.home-offer-hero__price-block {
    margin-bottom: 16px;
}

.home-offer-hero__old-price {
    display: block;
    color: var(--bv-text-light);
    font-size: 0.84rem;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.home-offer-hero__price {
    display: block;
    color: var(--bv-text);
    font-size: 2.05rem;
    line-height: 1.03;
    font-weight: 900;
}


/* =========================================================
   HOME - GRID DE OFERTAS
========================================================= */
.home-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.home-offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.home-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    border-color: #bfdbfe;
}

.home-offer-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.home-offer-card__store {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--bv-shadow-xs);
}

.home-offer-card__store img {
    max-width: 84%;
    max-height: 84%;
    object-fit: contain;
}

.home-offer-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
    padding: 10px;
}

.home-offer-card__image img {
    width: 100%;
    height: 128px;
    object-fit: contain;
}

.home-offer-card__title {
    min-height: 3em;
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 800;
}

.home-offer-card__prices {
    margin-bottom: 8px;
}

.home-offer-card__old-price {
    display: block;
    color: var(--bv-text-light);
    font-size: 0.82rem;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.home-offer-card__price {
    display: block;
    color: var(--bv-text);
    font-size: 1.48rem;
    line-height: 1.08;
    font-weight: 900;
}

.home-offer-card .bv-btn--offer {
    margin-top: auto;
}


/* =========================================================
   HOME - COLEÇÕES E BENEFÍCIOS
========================================================= */
.home-collections-grid,
.home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.home-collection-card,
.home-benefit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.home-collection-card:hover,
.home-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.home-collection-card {
    overflow: hidden;
}

.home-collection-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 60%, #dcfce7 100%);
    font-size: 2.3rem;
}

.home-collection-card__content,
.home-benefit-card {
    padding: 18px;
}

.home-collection-card__content h3,
.home-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 800;
}

.home-collection-card__content p,
.home-benefit-card p {
    margin: 0;
    color: var(--bv-text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.home-benefit-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 15px;
    background: linear-gradient(180deg, #eef5ff 0%, #dcecff 100%);
    font-size: 1.3rem;
}


/* =========================================================
   CATEGORIAS.PHP
========================================================= */
.bv-categories-page {
    padding: 28px 0 48px;
}

.bv-categories-shell {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-categories-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--bv-text-muted);
    font-size: 0.82rem;
}

.bv-categories-breadcrumb a {
    color: var(--bv-text);
    transition: var(--bv-transition);
}

.bv-categories-breadcrumb a:hover {
    color: var(--bv-primary);
}

.bv-categories-hero,
.bv-categories-highlight,
.bv-categories-grid-wrap {
    border-radius: var(--bv-radius-2xl);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e6ebf2;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.bv-categories-hero {
    padding: 28px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-categories-hero__badge {
    background: #eef6ff;
    color: #1d4ed8;
    margin-bottom: 16px;
}

.bv-categories-hero h1 {
    margin: 0 0 14px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.bv-categories-hero p {
    margin: 0;
    max-width: 860px;
    color: var(--bv-text-soft);
    font-size: 0.96rem;
    line-height: 1.8;
}

.bv-categories-hero__chips,
.bv-categories-highlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bv-categories-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--bv-radius-pill);
    font-size: 0.76rem;
    font-weight: 800;
}

.bv-categories-chip--green {
    background: var(--bv-success-soft);
    color: #15803d;
}

.bv-categories-chip--blue {
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
}

.bv-categories-chip--neutral {
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-muted);
}

.bv-categories-highlight {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at right top, rgba(59, 130, 246, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-categories-highlight__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 16px;
    border-radius: var(--bv-radius-xl);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-categories-highlight__media img {
    width: 100%;
    max-width: 240px;
    max-height: 220px;
    object-fit: contain;
}

.bv-categories-highlight__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(180deg, #eef5ff 0%, #dcecff 100%);
    font-size: 3rem;
}

.bv-categories-highlight__badge {
    background: #fff7ed;
    color: #c2410c;
    margin-bottom: 14px;
}

.bv-categories-highlight__content h2 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: clamp(1.45rem, 2vw, 2.2rem);
    line-height: 1.14;
    font-weight: 900;
}

.bv-categories-highlight__content p {
    margin: 0 0 14px;
    color: var(--bv-text-muted);
    line-height: 1.72;
    font-size: 0.92rem;
}

.bv-categories-highlight__actions {
    margin-top: 16px;
}

.bv-categories-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    font-size: 0.9rem;
    font-weight: 900;
    transition: var(--bv-transition);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.bv-categories-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.bv-categories-ad-slot {
    margin-bottom: 22px;
}

.bv-categories-grid-wrap {
    padding: 24px;
}

.bv-categories-grid-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-categories-grid-head h2 {
    margin: 0 0 6px;
    color: var(--bv-text);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bv-categories-grid-head p {
    margin: 0;
    color: var(--bv-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-categories-grid-head__count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--bv-radius-pill);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 900;
    white-space: nowrap;
}

.bv-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.bv-categories-grid-full {
    grid-column: 1 / -1;
}

.bv-categories-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.18s ease;
}

.bv-categories-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    border-color: #bfdbfe;
}

.bv-categories-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border-bottom: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-categories-card__image {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.bv-categories-card__emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: linear-gradient(180deg, #eef5ff 0%, #dcecff 100%);
    font-size: 2.6rem;
}

.bv-categories-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
    padding: 16px;
}

.bv-categories-card__title {
    min-height: 2.8em;
    margin: 0;
    color: var(--bv-text);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 800;
}

.bv-categories-card__text {
    min-height: 66px;
    color: var(--bv-text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

.bv-categories-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 2px;
}

.bv-categories-card__count {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: var(--bv-radius-pill);
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.bv-categories-card__cta {
    color: var(--bv-primary);
    font-size: 0.8rem;
    font-weight: 900;
}


/* =========================================================
   OFERTAS.PHP
========================================================= */
.bv-ofertas-page {
    width: 100%;
    padding: 28px 0 48px;
}

.bv-ofertas-shell {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-ofertas-hero,
.bv-ofertas-highlight,
.bv-ofertas-section {
    border-radius: var(--bv-radius-2xl);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e6ebf2;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.bv-ofertas-hero {
    padding: 28px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-ofertas-hero__badge {
    background: #ecfdf5;
    color: #047857;
    margin-bottom: 16px;
}

.bv-ofertas-hero h1 {
    margin: 0 0 14px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.bv-ofertas-hero p {
    margin: 0;
    max-width: 860px;
    color: var(--bv-text-soft);
    font-size: 0.96rem;
    line-height: 1.8;
}

.bv-ofertas-hero__meta,
.bv-ofertas-highlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bv-ofertas-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--bv-radius-pill);
    font-size: 0.76rem;
    font-weight: 800;
}

.bv-ofertas-chip--green {
    background: var(--bv-success-soft);
    color: #15803d;
}

.bv-ofertas-chip--blue {
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
}

.bv-ofertas-chip--neutral {
    background: #f8fafc;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-muted);
}

.bv-ofertas-highlight {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at right top, rgba(16, 185, 129, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-ofertas-highlight__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 16px;
    border-radius: var(--bv-radius-xl);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-ofertas-highlight__media img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.bv-ofertas-highlight__badge {
    background: #fff7ed;
    color: #c2410c;
    margin-bottom: 14px;
}

.bv-ofertas-highlight__content h2 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: clamp(1.45rem, 2vw, 2.2rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.bv-ofertas-highlight__content p {
    margin: 0 0 14px;
    color: var(--bv-text-muted);
    line-height: 1.72;
    font-size: 0.92rem;
}

.bv-ofertas-highlight__price {
    color: var(--bv-text);
    font-size: 2rem;
    line-height: 1.04;
    font-weight: 900;
}

.bv-ofertas-highlight__actions {
    margin-top: 16px;
}

.bv-ofertas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: var(--bv-radius-md);
    font-size: 0.9rem;
    font-weight: 900;
    transition: var(--bv-transition);
}

.bv-ofertas-btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.bv-ofertas-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.bv-ofertas-ad-slot {
    margin-bottom: 22px;
}

.bv-ofertas-section {
    padding: 24px;
}

.bv-ofertas-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-ofertas-section__head h2 {
    margin: 0 0 6px;
    color: var(--bv-text);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bv-ofertas-section__head p {
    margin: 0;
    color: var(--bv-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-ofertas-section__count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--bv-radius-pill);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 900;
    white-space: nowrap;
}

.bv-ofertas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.bv-ofertas-grid-full {
    grid-column: 1 / -1;
}

.bv-ofertas-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.18s ease;
}

.bv-ofertas-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    border-color: #bfdbfe;
}

.bv-ofertas-card.is-top-offer {
    border-color: #fde68a;
    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.04),
        0 0 0 1px rgba(245, 158, 11, 0.10);
}

.bv-ofertas-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border-bottom: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-ofertas-card__image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.bv-ofertas-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: var(--bv-radius-pill);
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.20);
}

.bv-ofertas-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
    padding: 16px;
}

.bv-ofertas-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bv-ofertas-card__title {
    min-height: 3em;
    margin: 0;
    color: var(--bv-text);
    font-size: 0.96rem;
    line-height: 1.45;
    font-weight: 800;
}

.bv-ofertas-card__title a {
    color: inherit;
}

.bv-ofertas-card__modelo {
    min-height: 20px;
    color: var(--bv-text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.bv-ofertas-card__label {
    color: var(--bv-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bv-ofertas-card__old {
    color: var(--bv-text-light);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.bv-ofertas-card__price {
    color: var(--bv-text);
    font-size: 1.72rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bv-ofertas-card__note {
    color: var(--bv-text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

.bv-ofertas-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding: 0 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bv-success) 0%, var(--bv-success-2) 100%);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    transition: var(--bv-transition);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.16);
}

.bv-ofertas-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.22);
}


/* =========================================================
   CATEGORIA.PHP
========================================================= */
.bv-category-page {
    padding: 28px 0 48px;
}

.bv-category-shell {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-category-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--bv-text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.bv-category-breadcrumb a {
    color: var(--bv-text-soft);
    transition: var(--bv-transition);
}

.bv-category-breadcrumb a:hover {
    color: var(--bv-primary);
}

.bv-category-hero {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 26px;
    margin-bottom: 22px;
    border-radius: var(--bv-radius-2xl);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--bv-border);
    box-shadow: var(--bv-shadow-sm);
}

.bv-category-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 18px;
    border-radius: var(--bv-radius-xl);
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-category-hero__media img {
    width: 100%;
    max-width: 240px;
    max-height: 220px;
    object-fit: contain;
}

.bv-category-hero__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(180deg, #eef5ff 0%, #dcecff 100%);
    font-size: 3.1rem;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.bv-category-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: var(--bv-radius-pill);
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bv-category-hero__content h1 {
    margin: 0 0 12px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.bv-category-hero__content p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--bv-text-soft);
    font-size: 0.96rem;
    line-height: 1.75;
}

.bv-category-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--bv-radius-pill);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid transparent;
}

.bv-category-chip--green {
    background: var(--bv-success-soft);
    color: #15803d;
}

.bv-category-chip--blue {
    background: var(--bv-primary-soft);
    color: var(--bv-primary);
}

.bv-category-chip--neutral {
    background: #f8fafc;
    border-color: var(--bv-border);
    color: var(--bv-text-muted);
}

.bv-category-chip--gold {
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.bv-category-ad-slot {
    margin-bottom: 24px;
}

.bv-category-products-wrap {
    padding: 24px;
    border-radius: var(--bv-radius-2xl);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--bv-border);
    box-shadow: var(--bv-shadow-sm);
}

.bv-category-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-category-products-head h2 {
    margin: 0 0 6px;
    color: var(--bv-text);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bv-category-products-head p {
    margin: 0;
    color: var(--bv-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-category-products-head__count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--bv-radius-pill);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 900;
    white-space: nowrap;
}

.bv-category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.bv-category-grid-full {
    grid-column: 1 / -1;
}

.bv-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.18s ease;
}

.bv-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    border-color: #bfdbfe;
}

.bv-category-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border-bottom: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-category-card__image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.bv-category-card__discount {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: var(--bv-radius-pill);
    background: linear-gradient(135deg, var(--bv-danger) 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(239, 68, 68, 0.22);
}

.bv-category-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
    padding: 16px;
}

.bv-category-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bv-category-card__title {
    min-height: 3em;
    margin: 0;
    color: var(--bv-text);
    font-size: 0.96rem;
    line-height: 1.45;
    font-weight: 800;
}

.bv-category-card__title a {
    color: inherit;
}

.bv-category-card__modelo {
    min-height: 20px;
    color: var(--bv-text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.bv-category-card__price {
    color: var(--bv-text);
    font-size: 1.72rem;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bv-category-card__old-price {
    color: var(--bv-text-light);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.bv-category-card__muted {
    color: var(--bv-text-light);
    font-size: 0.84rem;
    line-height: 1.6;
}

.bv-category-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding: 0 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    transition: var(--bv-transition);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.bv-category-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.bv-category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8eef5;
}

.bv-category-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.84rem;
    font-weight: 900;
    transition: var(--bv-transition);
}

.bv-category-pagination__btn--ghost {
    background: #ffffff;
    border: 1px solid var(--bv-border);
    color: var(--bv-text-soft);
    box-shadow: var(--bv-shadow-xs);
}

.bv-category-pagination__btn--ghost:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.bv-category-pagination__btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.bv-category-pagination__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.bv-category-pagination__btn--static {
    cursor: default;
    pointer-events: none;
}


/* =========================================================
   CONTATO.PHP
========================================================= */
.bv-contact-page {
    width: 100%;
    padding: 28px 0 48px;
}

.bv-contact-page .container {
    max-width: 1280px;
    margin: 0 auto;
}

.bv-contact-hero,
.bv-contact-info__card,
.bv-contact-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e6ebf2;
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.bv-contact-hero {
    padding: 28px;
    margin-bottom: 24px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.bv-contact-hero__title {
    margin: 0 0 14px;
    font-size: 52px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #0f172a;
    font-weight: 950;
}

.bv-contact-hero__text {
    margin: 0;
    max-width: 860px;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.bv-contact-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.bv-contact-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.bv-contact-chip--green {
    background: #dcfce7;
    color: #166534;
}

.bv-contact-chip--blue {
    background: #eef6ff;
    color: #1d4ed8;
}

.bv-contact-chip--neutral {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e6ebf2;
}

.bv-contact-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bv-contact-info__card,
.bv-contact-form-card {
    padding: 24px;
}

.bv-contact-info__card h2,
.bv-contact-form-card__title {
    margin: 0;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0f172a;
    font-weight: 950;
}

.bv-contact-form-card__head {
    margin-bottom: 18px;
}

.bv-contact-form-card__subtitle {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.bv-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}

.bv-contact-info__item:last-of-type {
    border-bottom: 0;
}

.bv-contact-info__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eef6ff;
    font-size: 20px;
}

.bv-contact-info__item strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    font-weight: 900;
}

.bv-contact-info__item p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.bv-contact-info__note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

.bv-contact-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 800;
}

.bv-contact-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #166534;
}

.bv-contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.bv-contact-form {
    display: grid;
    gap: 16px;
}

.bv-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bv-contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bv-contact-form__group label {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.bv-contact-form__group input,
.bv-contact-form__group textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px 16px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: all 0.18s ease;
    box-sizing: border-box;
}

.bv-contact-form__group input:focus,
.bv-contact-form__group textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.bv-contact-form__group textarea {
    resize: vertical;
    min-height: 170px;
}

.bv-contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.bv-contact-form__tip {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    font-weight: 700;
}

.bv-contact-form__actions {
    display: flex;
    justify-content: flex-end;
}

.bv-contact-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
    transition: all 0.20s ease;
}

.bv-contact-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}


/* =========================================================
   PÁGINAS LEGAIS
========================================================= */
.bv-legal-page {
    width: 100%;
    padding: 28px 0 48px;
}

.bv-legal-page .container {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-legal-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bv-legal-hero,
.bv-legal-summary__card,
.bv-legal-card,
.bv-legal-cta {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e6ebf2;
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.bv-legal-hero {
    padding: 28px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.bv-legal-hero__badge {
    background: #eef6ff;
    color: #1d4ed8;
    margin-bottom: 16px;
}

.bv-legal-hero__title {
    margin: 0 0 12px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.bv-legal-hero__text {
    margin: 0;
    max-width: 860px;
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--bv-text-soft);
}

.bv-legal-summary__card,
.bv-legal-card,
.bv-legal-cta {
    padding: 24px;
}

.bv-legal-summary__card h2,
.bv-legal-card h3,
.bv-legal-cta h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #0f172a;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 900;
}

.bv-legal-summary__card ul,
.bv-legal-list {
    margin: 0;
    padding-left: 20px;
}

.bv-legal-summary__card li,
.bv-legal-list li,
.bv-legal-card p,
.bv-legal-cta p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

.bv-legal-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 0.88rem;
    font-weight: 900;
    transition: var(--bv-transition);
}

.bv-legal-btn--primary {
    background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.bv-legal-btn--ghost {
    background: #ffffff;
    border: 1px solid var(--bv-border);
    color: var(--bv-primary);
    box-shadow: var(--bv-shadow-xs);
}

.bv-legal-btn--primary:hover,
.bv-legal-btn--ghost:hover {
    transform: translateY(-1px);
}


/* =========================================================
   PRODUTO PUBLIC PAGE V9
========================================================= */
.bv-product-page {
    width: 100%;
    padding: 28px 0 52px;
}

.bv-product-shell {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--bv-text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.bv-product-breadcrumb a {
    color: var(--bv-text-soft);
    transition: var(--bv-transition);
}

.bv-product-breadcrumb a:hover {
    color: var(--bv-primary);
}

.bv-product-card,
.bv-product-hero {
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e3ebf4;
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bv-product-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    margin-bottom: 22px;
    overflow: hidden;
}

.bv-product-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
        linear-gradient(180deg, #f9fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-product-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bv-product-hero__media img {
    width: 100%;
    max-width: 300px;
    max-height: 335px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.12));
}

.bv-product-hero__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 4px 4px 4px 0;
}

.bv-product-hero__brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bv-product-hero__content h1 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.bv-product-hero__model {
    margin-bottom: 10px;
    color: var(--bv-text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    font-weight: 700;
}

.bv-product-hero__summary {
    margin-bottom: 18px;
    color: var(--bv-text-soft);
    font-size: 0.94rem;
    line-height: 1.72;
}

.bv-product-hero__main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.bv-product-hero__offer-block,
.bv-product-hero__side-block {
    min-width: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.bv-product-hero__offer-block {
    padding: 22px;
}

.bv-product-hero__side-block {
    padding: 18px;
}

.bv-product-hero__price {
    margin-bottom: 6px;
    color: #0f172a;
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.bv-product-hero__old-price {
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 700;
}

.bv-product-hero__economy {
    margin-bottom: 18px;
    color: #059669;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 900;
}

.bv-product-hero__muted {
    color: var(--bv-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bv-product-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.20);
    transition: all 0.18s ease;
}

.bv-product-main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(5, 150, 105, 0.26);
}

.bv-product-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bv-product-store-chip {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.bv-product-store-chip img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.bv-product-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.bv-product-chip--neutral {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.bv-product-chip--green {
    background: #dcfce7;
    color: #166534;
}

.bv-product-chip--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.bv-product-chip--gold {
    background: #fef3c7;
    color: #92400e;
}

.bv-product-chip--orange {
    background: #ffedd5;
    color: #c2410c;
}

.bv-product-share {
    margin-top: 6px;
}

.bv-product-share__title {
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.4;
    font-weight: 900;
}

.bv-product-share__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bv-product-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #dfe7f1;
    border-radius: 15px;
    background: #ffffff;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

.bv-product-share__btn:hover {
    transform: translateY(-1px);
    border-color: #bfdbfe;
    background: #f8fbff;
}

.bv-product-share__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bv-product-share__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.bv-product-share__label {
    line-height: 1;
}

.bv-product-card {
    padding: 24px;
    margin-bottom: 18px;
}

.bv-product-card h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(1.42rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 950;
}

.bv-product-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bv-product-bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--bv-text-soft);
    font-size: 0.94rem;
    line-height: 1.72;
    font-weight: 600;
}

.bv-product-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
    transform: translateY(-50%);
}

.bv-product-description {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.82;
}

.bv-product-seo-keywords {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e8eef5;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.75;
}

.bv-product-seo-keywords__label {
    font-weight: 900;
    color: #475569;
}

.bv-product-seo-keywords__text {
    color: #64748b;
}

.bv-product-ad-slot {
    margin-bottom: 18px;
}

.bv-product-offers-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-product-offers-head h2 {
    margin-bottom: 6px;
}

.bv-product-offers-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-product-offers-head__badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 900;
    white-space: nowrap;
}

.bv-product-offers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bv-product-offer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.bv-product-offer-row:hover {
    transform: translateY(-1px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.bv-product-offer-row.is-best-offer {
    border-color: #fde68a;
    background:
        radial-gradient(circle at right top, rgba(245, 158, 11, 0.08), transparent 24%),
        linear-gradient(180deg, #fffef7 0%, #ffffff 100%);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.05),
        0 0 0 1px rgba(245, 158, 11, 0.10);
}

.bv-product-offer-row__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.bv-product-offer-row__logo {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.bv-product-offer-row__logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.bv-product-offer-row__content {
    min-width: 0;
}

.bv-product-offer-row__content h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 900;
}

.bv-product-offer-row__content p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.65;
}

.bv-product-offer-row__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-product-offer-row__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.bv-product-offer-row__price {
    color: #0f172a;
    font-size: clamp(1.8rem, 2vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.bv-product-offer-row__old-price {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: line-through;
    font-weight: 700;
}

.bv-product-offer-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 0.86rem;
    line-height: 1;
    font-weight: 900;
    transition: all 0.18s ease;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.bv-product-offer-row__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

.bv-product-offer-row__btn.is-best {
    background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.18);
}

.bv-product-offer-row__btn.is-best:hover {
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.24);
}


/* =========================================================
   OFERTA PUBLIC PAGE V9
========================================================= */
.bv-offer-page {
    width: 100%;
    padding: 28px 0 52px;
}

.bv-offer-shell {
    width: var(--bv-container);
    margin: 0 auto;
}

.bv-offer-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--bv-text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.bv-offer-breadcrumb a {
    color: var(--bv-text-soft);
    transition: var(--bv-transition);
}

.bv-offer-breadcrumb a:hover {
    color: var(--bv-primary);
}

.bv-offer-card,
.bv-offer-hero {
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e3ebf4;
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bv-offer-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    margin-bottom: 22px;
    overflow: hidden;
}

.bv-offer-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
        linear-gradient(180deg, #f9fbff 0%, #eef5fb 100%);
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.bv-offer-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bv-offer-hero__media img {
    width: 100%;
    max-width: 300px;
    max-height: 335px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.12));
}

.bv-offer-hero__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 4px 4px 4px 0;
}

.bv-offer-hero__brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bv-offer-hero__content h1 {
    margin: 0 0 10px;
    color: var(--bv-text);
    font-size: clamp(2rem, 3vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.bv-offer-hero__main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
    margin-top: 10px;
}

.bv-offer-hero__offer-block,
.bv-offer-hero__side-block {
    min-width: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.bv-offer-hero__offer-block {
    padding: 22px;
}

.bv-offer-hero__side-block {
    padding: 18px;
}

.bv-offer-hero__price {
    margin-bottom: 6px;
    color: #0f172a;
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.bv-offer-hero__old-price {
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 700;
}

.bv-offer-hero__economy {
    margin-bottom: 18px;
    color: #059669;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 900;
}

.bv-offer-hero__muted {
    color: var(--bv-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bv-offer-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.20);
    transition: all 0.18s ease;
}

.bv-offer-main-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(5, 150, 105, 0.26);
}

.bv-offer-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bv-offer-store-chip {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.bv-offer-store-chip img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.bv-offer-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.bv-offer-chip--neutral {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.bv-offer-chip--green {
    background: #dcfce7;
    color: #166534;
}

.bv-offer-chip--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.bv-offer-chip--gold {
    background: #fef3c7;
    color: #92400e;
}

.bv-offer-chip--orange {
    background: #ffedd5;
    color: #c2410c;
}

.bv-offer-share {
    margin-top: 6px;
}

.bv-offer-share__title {
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.4;
    font-weight: 900;
}

.bv-offer-share__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bv-offer-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #dfe7f1;
    border-radius: 15px;
    background: #ffffff;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

.bv-offer-share__btn:hover {
    transform: translateY(-1px);
    border-color: #bfdbfe;
    background: #f8fbff;
}

.bv-offer-share__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bv-offer-share__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.bv-offer-share__label {
    line-height: 1;
}

.bv-offer-card {
    padding: 24px;
    margin-bottom: 18px;
}

.bv-offer-card h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(1.42rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 950;
}

.bv-offer-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.bv-offer-summary-item {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6edf5;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.bv-offer-summary-item strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 0.84rem;
    line-height: 1.4;
    font-weight: 900;
}

.bv-offer-summary-item span {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.65;
    word-break: break-word;
}

.bv-offer-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bv-offer-bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--bv-text-soft);
    font-size: 0.94rem;
    line-height: 1.72;
    font-weight: 600;
}

.bv-offer-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
    transform: translateY(-50%);
}

.bv-offer-description {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.82;
}

.bv-offer-ad-slot {
    margin-bottom: 18px;
}

.bv-offer-trust-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-offer-trust-head h2 {
    margin-bottom: 6px;
}

.bv-offer-trust-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-offer-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bv-offer-trust-item {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6edf5;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.bv-offer-trust-item strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 900;
}

.bv-offer-trust-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.68;
}

.bv-offer-trust-actions {
    margin-top: 18px;
}

.bv-offer-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef5;
}

.bv-offer-related-head h2 {
    margin-bottom: 6px;
}

.bv-offer-related-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
}

.bv-offer-related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bv-offer-related-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dfe7f1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.18s ease;
}

.bv-offer-related-row:hover {
    transform: translateY(-1px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.bv-offer-related-row__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.bv-offer-related-row__logo {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.bv-offer-related-row__logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.bv-offer-related-row__content {
    min-width: 0;
}

.bv-offer-related-row__content h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 900;
}

.bv-offer-related-row__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-offer-related-row__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.bv-offer-related-row__price {
    color: #0f172a;
    font-size: clamp(1.8rem, 2vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.bv-offer-related-row__old-price {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: line-through;
    font-weight: 700;
}

.bv-offer-related-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 0.86rem;
    line-height: 1;
    font-weight: 900;
    transition: all 0.18s ease;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.bv-offer-related-row__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}


/* =========================================================
   AUTH PAGES
========================================================= */
.auth-page {
    padding: 32px 0 56px;
}

.auth-shell {
    display: grid;
    gap: 24px;
    align-items: start;
}

.auth-shell--single {
    max-width: 560px;
    margin: 0 auto;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    padding: 28px;
}

.auth-card__title {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(1.8rem, 2vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 950;
}

.auth-card__subtitle {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.75;
}

.auth-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 800;
}

.auth-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #166534;
}

.auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form__group label {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.auth-form__group input,
.auth-form__group select,
.auth-form__group textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: all 0.18s ease;
}

.auth-form__group textarea {
    min-height: 140px;
    resize: vertical;
}

.auth-form__group input:focus,
.auth-form__group select:focus,
.auth-form__group textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.auth-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
    transition: all 0.20s ease;
}

.auth-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.auth-link {
    color: #2563eb;
    font-weight: 800;
}

.auth-link:hover {
    text-decoration: underline;
}


/* =========================================================
   AUTH COMPATIBILITY PATCH
   - Compatibiliza a camada visual atual com os seletores
     usados nas telas públicas de autenticação e no painel.
   - Não altera grids, vitrines ou componentes globais.
========================================================= */
.auth-card__header {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.auth-card__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.auth-field input,
.auth-field select,
.auth-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: all 0.18s ease;
}

.auth-field textarea {
    min-height: 140px;
    resize: vertical;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.auth-field input[disabled],
.auth-field select[disabled],
.auth-field textarea[disabled],
.auth-field input[readonly],
.auth-field select[readonly],
.auth-field textarea[readonly] {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.auth-field__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-field__top label {
    margin: 0;
}

.auth-field__link {
    color: #2563eb;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.auth-field__link:hover {
    text-decoration: underline;
}

.auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
    transition: all 0.20s ease;
}

.auth-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.auth-button--success {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.18);
}

.auth-button[disabled],
.auth-button:disabled {
    opacity: 0.68;
    cursor: not-allowed;
    transform: none;
    filter: none;
    box-shadow: none;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
}

.auth-check input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    accent-color: #2563eb;
    flex: 0 0 auto;
}

.auth-check a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.auth-check a:hover {
    text-decoration: underline;
}

.auth-card__footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.auth-card__footer--no-border {
    margin-top: 14px;
    padding-top: 0;
    border-top: 0;
}

.auth-card__footer p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.auth-card__footer a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.auth-card__footer a:hover {
    text-decoration: underline;
}

.auth-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* =========================================================
   RESPONSIVIDADE CONSOLIDADA
========================================================= */
@media (max-width: 1200px) {
    .home-categories-grid,
    .home-products-grid,
    .home-products-grid--eight,
    .bv-categories-grid,
    .bv-ofertas-grid,
    .bv-category-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-offers-grid,
    .home-collections-grid,
    .home-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-legal-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .bv-product-hero,
    .bv-offer-hero {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .bv-product-hero__main-grid,
    .bv-offer-hero__main-grid {
        grid-template-columns: 1fr;
    }

    .bv-product-hero__side-block,
    .bv-offer-hero__side-block {
        padding: 16px;
    }

    .home-products-grid--eight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .home-hero-card,
    .home-offer-hero,
    .bv-categories-highlight,
    .bv-ofertas-highlight,
    .bv-contact-layout {
        grid-template-columns: 1fr;
    }

    .home-hero-stats--three {
        grid-template-columns: 1fr 1fr;
    }

    .bv-category-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .home-categories-grid,
    .home-products-grid,
    .bv-categories-grid,
    .bv-ofertas-grid,
    .bv-category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-offers-grid,
    .home-collections-grid,
    .home-benefits-grid,
    .bv-offer-trust-grid {
        grid-template-columns: 1fr;
    }

    .bv-product-hero,
    .bv-offer-hero {
        grid-template-columns: 1fr;
    }

    .bv-product-hero__media,
    .bv-offer-hero__media {
        min-height: 300px;
    }

    .bv-product-hero__media img,
    .bv-offer-hero__media img {
        max-height: 250px;
    }

    .bv-product-offer-row,
    .bv-offer-related-row {
        grid-template-columns: 1fr;
    }

    .bv-product-offer-row__right,
    .bv-offer-related-row__right {
        align-items: flex-start;
        text-align: left;
    }

    .bv-offer-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auth-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .bv-product-share__grid,
    .bv-offer-share__grid {
        grid-template-columns: 1fr;
    }

    .bv-product-offers-head,
    .bv-offer-trust-head,
    .bv-offer-related-head,
    .bv-categories-grid-head,
    .bv-ofertas-section__head,
    .home-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .bv-product-card,
    .bv-product-hero,
    .bv-offer-card,
    .bv-offer-hero {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .container,
    .bv-home > .container,
    .bv-categories-shell,
    .bv-ofertas-shell,
    .bv-category-shell,
    .bv-product-shell,
    .bv-offer-shell,
    .bv-contact-page .container,
    .bv-legal-page .container {
        width: min(100% - 20px, 1280px);
    }

    .home-categories-grid,
    .home-products-grid,
    .home-products-grid--eight,
    .bv-categories-grid,
    .bv-ofertas-grid,
    .bv-category-products-grid,
    .home-hero-stats--three,
    .bv-offer-summary-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-card,
    .home-showcase-card,
    .home-offer-hero,
    .bv-categories-hero,
    .bv-categories-highlight,
    .bv-categories-grid-wrap,
    .bv-ofertas-hero,
    .bv-ofertas-highlight,
    .bv-ofertas-section,
    .bv-category-hero,
    .bv-category-products-wrap,
    .bv-contact-hero,
    .bv-contact-info__card,
    .bv-contact-form-card,
    .bv-product-card,
    .bv-product-hero,
    .bv-offer-card,
    .bv-offer-hero,
    .bv-legal-hero,
    .bv-legal-summary__card,
    .bv-legal-card,
    .bv-legal-cta,
    .auth-card {
        padding: 20px;
        border-radius: 22px;
    }

    .bv-contact-page,
    .bv-category-page,
    .bv-ofertas-page,
    .bv-product-page,
    .bv-offer-page,
    .bv-legal-page {
        padding: 18px 0 34px;
    }

    .bv-product-hero__media,
    .bv-offer-hero__media {
        min-height: 260px;
        padding: 18px;
    }

    .bv-product-hero__content h1,
    .bv-offer-hero__content h1 {
        font-size: 2rem;
    }

    .bv-product-hero__price,
    .bv-offer-hero__price {
        font-size: 2.2rem;
    }

    .bv-product-offer-row,
    .bv-offer-related-row {
        padding: 15px;
        border-radius: 18px;
    }

    .bv-product-offer-row__left,
    .bv-offer-related-row__left {
        flex-direction: column;
        align-items: flex-start;
    }

    .bv-product-offer-row__logo,
    .bv-offer-related-row__logo {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .bv-product-main-btn,
    .bv-product-offer-row__btn,
    .bv-offer-main-btn,
    .bv-offer-related-row__btn,
    .bv-contact-btn,
    .auth-btn {
        width: 100%;
    }

    .bv-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .bv-contact-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .bv-contact-form__actions {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .bv-contact-hero__title,
    .bv-legal-hero__title {
        font-size: 1.95rem;
    }

    .home-hero-title {
        font-size: 1.95rem;
    }

    .home-section-title,
    .bv-categories-grid-head h2,
    .bv-ofertas-section__head h2,
    .bv-category-products-head h2,
    .bv-product-card h2,
    .bv-offer-card h2 {
        font-size: 1.42rem;
    }

    .bv-legal-btn,
    .bv-btn,
    .bv-categories-btn,
    .bv-ofertas-btn,
    .bv-category-card__btn {
        width: 100%;
    }

    .bv-legal-cta__actions,
    .auth-form__actions {
        flex-direction: column;
    }

    .bv-product-breadcrumb,
    .bv-offer-breadcrumb,
    .bv-category-breadcrumb {
        font-size: 0.76rem;
    }

    .bv-product-hero,
    .bv-product-card,
    .bv-offer-hero,
    .bv-offer-card {
        padding: 16px;
        border-radius: 20px;
    }

    .bv-product-hero__offer-block,
    .bv-product-hero__side-block,
    .bv-offer-hero__offer-block,
    .bv-offer-hero__side-block {
        padding: 16px;
        border-radius: 18px;
    }

    .bv-product-hero__content h1,
    .bv-offer-hero__content h1 {
        font-size: 1.72rem;
    }

    .bv-product-hero__summary,
    .bv-product-description,
    .bv-product-bullets li,
    .bv-offer-description,
    .bv-offer-bullets li {
        font-size: 0.9rem;
    }

    .bv-product-offer-row__price,
    .bv-offer-hero__price,
    .bv-offer-related-row__price {
        font-size: 1.95rem;
    }

    .bv-product-share__btn,
    .bv-offer-share__btn {
        min-height: 44px;
    }
}

/**
 * =========================================================
 * MÓDULO : ACCOUNT DASHBOARD REBUILD
 * PROJETO: BomVendedor
 * VERSÃO : V12 USER PANEL VISUAL REBUILD
 * DATA   : 02/04/2026
 * =========================================================
 * OBJETIVO:
 * - reconstruir o visual do minha-conta.php
 * - aproximar o painel do mockup validado
 * - corrigir escala da sidebar, avatar, cards e navegação
 * =========================================================
 */

.account-dashboard-page {
    padding: 28px 0 56px;
}

.account-dashboard-page .account-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.account-dashboard-page .account-sidebar,
.account-dashboard-page .account-main {
    min-width: 0;
}

/* =========================================================
   SIDEBAR
========================================================= */
.account-dashboard-page .account-card--profile {
    position: sticky;
    top: 24px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.account-dashboard-page .account-card--profile::after {
    display: none;
}

.account-dashboard-page .account-profile {
    padding: 22px 20px 18px;
    border-bottom: 1px solid #e8eef6;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.account-dashboard-page .account-profile__avatar {
    width: 124px;
    height: 124px;
    border-radius: 999px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow:
        0 0 0 1px #d7e3f0,
        0 14px 30px rgba(15, 23, 42, 0.12);
    background: #f8fafc;
}

.account-dashboard-page .account-profile__hint {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.8rem;
}

.account-dashboard-page .account-profile__name {
    margin-top: 14px;
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 900;
    color: #0f172a;
}

.account-dashboard-page .account-profile__email {
    margin-top: 6px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
    word-break: break-word;
}

.account-dashboard-page .account-profile__nickname {
    margin-top: 8px;
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 900;
}

.account-dashboard-page .account-profile__status-row {
    margin-top: 14px;
}

.account-dashboard-page .account-side-note {
    margin: 16px;
    margin-top: 0;
    padding: 14px 15px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #e2ebf5;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =========================================================
   MENU LATERAL
========================================================= */
.account-dashboard-page .account-nav {
    display: grid;
    gap: 8px;
    padding: 0 16px 16px;
}

.account-dashboard-page .account-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    color: #334155;
    transition: all 0.18s ease;
}

.account-dashboard-page .account-nav__link span {
    font-size: 0.92rem;
    font-weight: 900;
}

.account-dashboard-page .account-nav__link small {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.account-dashboard-page .account-nav__link:hover {
    border-color: #bfdbfe;
    background: #f8fbff;
    transform: translateY(-1px);
}

.account-dashboard-page .account-nav__link.is-active {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #eff6ff 0%, #e8f1ff 100%);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.10);
}

.account-dashboard-page .account-logout-link {
    width: calc(100% - 32px);
    margin: 0 16px 18px;
    min-height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

/* =========================================================
   CABEÇALHO DO PAINEL
========================================================= */
.account-dashboard-page .account-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.account-dashboard-page .account-panel-head__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-dashboard-page .account-panel-head__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 2.4vw, 2.5rem);
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.account-dashboard-page .account-panel-head__text {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.72;
    max-width: 64ch;
}

/* =========================================================
   KPI CARDS
========================================================= */
.account-dashboard-page .account-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.account-dashboard-page .account-kpi-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.account-dashboard-page .account-kpi-card__label {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-dashboard-page .account-kpi-card__value {
    display: block;
    color: #0f172a;
    font-size: 1.7rem;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.account-dashboard-page .account-kpi-card__meta {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* =========================================================
   GRID PRINCIPAL
========================================================= */
.account-dashboard-page .account-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
}

.account-dashboard-page .account-main .account-card {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.account-dashboard-page .account-main .account-card::after {
    display: none;
}

.account-dashboard-page .account-card__title {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 950;
}

/* =========================================================
   FEED / NOVIDADES
========================================================= */
.account-dashboard-page .account-feed {
    display: grid;
    gap: 12px;
}

.account-dashboard-page .account-feed__item {
    padding: 15px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e4edf6;
}

.account-dashboard-page .account-feed__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.account-dashboard-page .account-feed__top strong {
    color: #0f172a;
    font-size: 0.93rem;
    line-height: 1.5;
    font-weight: 900;
}

.account-dashboard-page .account-feed__top span {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.account-dashboard-page .account-feed__item p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.68;
}

.account-dashboard-page .account-feed__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

/* =========================================================
   ALERTAS IMPORTANTES
========================================================= */
.account-dashboard-page .account-alert-list {
    display: grid;
    gap: 12px;
}

.account-dashboard-page .account-alert-list__item {
    padding: 15px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e4edf6;
}

.account-dashboard-page .account-alert-list__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.account-dashboard-page .account-alert-list__head strong {
    color: #0f172a;
    font-size: 0.93rem;
    line-height: 1.45;
    font-weight: 900;
}

.account-dashboard-page .account-alert-list__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: #475569;
    font-size: 0.87rem;
    font-weight: 700;
}

.account-dashboard-page .account-alert-list__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
}

/* =========================================================
   CHIPS
========================================================= */
.account-dashboard-page .account-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.account-dashboard-page .account-chip--new {
    color: #1d4ed8;
    background: #dbeafe;
}

.account-dashboard-page .account-chip--success {
    color: #166534;
    background: #dcfce7;
}

.account-dashboard-page .account-chip--warning {
    color: #92400e;
    background: #fef3c7;
}

.account-dashboard-page .account-chip--primary {
    color: #1d4ed8;
    background: #dbeafe;
}

.account-dashboard-page .account-chip--soft {
    color: #475569;
    background: #f1f5f9;
}

.account-dashboard-page .account-chip--neutral {
    color: #334155;
    background: #e2e8f0;
}

/* =========================================================
   ESTADOS VAZIOS
========================================================= */
.account-dashboard-page .account-empty-state {
    padding: 26px;
    border-radius: 20px;
    background: #fbfdff;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    text-align: center;
    font-size: 0.94rem;
    line-height: 1.72;
}

/* =========================================================
   FAVORITOS
========================================================= */
.account-dashboard-page .account-favorites {
    display: grid;
    gap: 14px;
}

.account-dashboard-page .account-favorite-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2ebf5;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.account-dashboard-page .account-favorite-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #edf3fa;
    overflow: hidden;
}

.account-dashboard-page .account-favorite-card__media img {
    width: 100%;
    height: 98px;
    object-fit: contain;
}

.account-dashboard-page .account-favorite-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.account-dashboard-page .account-favorite-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.account-dashboard-page .account-favorite-card__title {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 900;
}

.account-dashboard-page .account-favorite-card__price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.account-dashboard-page .account-favorite-card__price-row strong {
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 950;
}

.account-dashboard-page .account-favorite-card__price-row span {
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 700;
}

.account-dashboard-page .account-favorite-card__meta {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}

.account-dashboard-page .account-favorite-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

/* =========================================================
   BOTÕES INLINE
========================================================= */
.account-dashboard-page .account-inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.account-dashboard-page .account-inline-button--ghost {
    color: #2563eb;
    background: #ffffff;
    border: 1px solid #dbe7f3;
}

.account-dashboard-page .account-inline-button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

/* =========================================================
   TABELA ALERTAS
========================================================= */
.account-dashboard-page .account-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e2ebf5;
    border-radius: 22px;
    background: #ffffff;
}

.account-dashboard-page .account-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.account-dashboard-page .account-table thead th {
    padding: 16px 14px;
    background: #f8fbff;
    color: #475569;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
    border-bottom: 1px solid #e5edf6;
}

.account-dashboard-page .account-table tbody td {
    padding: 16px 14px;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.55;
    border-bottom: 1px solid #edf3fa;
    vertical-align: middle;
}

.account-dashboard-page .account-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-dashboard-page .account-table__product {
    display: grid;
    gap: 4px;
}

.account-dashboard-page .account-table__product strong {
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 900;
}

.account-dashboard-page .account-table__product small {
    color: #64748b;
    font-size: 0.8rem;
}

.account-dashboard-page .account-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.account-dashboard-page .account-inline-link {
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 800;
}

.account-dashboard-page .account-inline-link.is-disabled {
    color: #94a3b8;
    pointer-events: none;
}

.account-dashboard-page .account-helper-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e2ebf5;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 1200px) {
    .account-dashboard-page .account-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-dashboard-page .account-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .account-dashboard-page .account-layout {
        grid-template-columns: 1fr;
    }

    .account-dashboard-page .account-card--profile {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .account-dashboard-page .account-kpis {
        grid-template-columns: 1fr;
    }

    .account-dashboard-page .account-favorite-card {
        grid-template-columns: 1fr;
    }

    .account-dashboard-page .account-favorite-card__media {
        min-height: 180px;
    }

    .account-dashboard-page .account-nav__link {
        align-items: flex-start;
        flex-direction: column;
    }
}

/**
 * =========================================================
 * MÓDULO : ACCOUNT DASHBOARD PREMIUM POLISH
 * PROJETO: BomVendedor
 * VERSÃO : V13 USER PANEL PREMIUM FEEL
 * DATA   : 02/04/2026
 * =========================================================
 * OBJETIVO:
 * - elevar percepção premium do Minha Conta
 * - adicionar profundidade, contraste e acabamento visual
 * - manter compatibilidade total com HTML atual
 * =========================================================
 */

.account-dashboard-page {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.05), transparent 22%),
        linear-gradient(180deg, #f4f8fc 0%, #eef4f9 100%);
}

.account-dashboard-page .container {
    max-width: 1320px;
}

/* =========================================================
   SIDEBAR PREMIUM
========================================================= */
.account-dashboard-page .account-card--profile {
    border-radius: 28px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.98) 100%);
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.10),
        0 8px 18px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(8px);
}

.account-dashboard-page .account-profile {
    padding: 24px 22px 18px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.account-dashboard-page .account-profile__avatar {
    width: 132px;
    height: 132px;
    border: 4px solid #ffffff;
    box-shadow:
        0 0 0 1px #d6e1ee,
        0 22px 40px rgba(15, 23, 42, 0.16);
}

.account-dashboard-page .account-profile__name {
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

.account-dashboard-page .account-profile__email {
    font-size: 0.92rem;
}

.account-dashboard-page .account-profile__nickname {
    font-size: 0.86rem;
}

.account-dashboard-page .account-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.74rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.account-dashboard-page .account-side-note {
    margin: 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* =========================================================
   MENU LATERAL MAIS NOBRE
========================================================= */
.account-dashboard-page .account-nav {
    gap: 10px;
}

.account-dashboard-page .account-nav__link {
    min-height: 58px;
    padding: 13px 15px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e2eaf4;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.03);
}

.account-dashboard-page .account-nav__link span {
    font-size: 0.95rem;
    font-weight: 900;
}

.account-dashboard-page .account-nav__link small {
    font-size: 0.74rem;
    font-weight: 900;
}

.account-dashboard-page .account-nav__link:hover {
    border-color: #93c5fd;
    box-shadow:
        0 14px 26px rgba(37, 99, 235, 0.08),
        0 6px 12px rgba(15, 23, 42, 0.03);
}

.account-dashboard-page .account-nav__link.is-active {
    border-color: #93c5fd;
    background:
        linear-gradient(135deg, #eff6ff 0%, #eef4ff 55%, #f8fbff 100%);
    box-shadow:
        0 18px 32px rgba(37, 99, 235, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.account-dashboard-page .account-logout-link {
    border-radius: 18px;
    box-shadow:
        0 18px 32px rgba(15, 23, 42, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================================================
   HERO DO PAINEL
========================================================= */
.account-dashboard-page .account-panel-head {
    margin-bottom: 22px;
    padding: 22px 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248,251,255,0.98) 100%);
    border: 1px solid #dee8f3;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.account-dashboard-page .account-panel-head__eyebrow {
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 12px;
    font-size: 0.73rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.account-dashboard-page .account-panel-head__title {
    font-size: clamp(2.1rem, 2.8vw, 3rem);
    line-height: 1;
}

.account-dashboard-page .account-panel-head__text {
    font-size: 0.98rem;
    max-width: 62ch;
}

/* =========================================================
   KPI PREMIUM
========================================================= */
.account-dashboard-page .account-kpis {
    gap: 16px;
    margin-bottom: 22px;
}

.account-dashboard-page .account-kpi-card {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow:
        0 18px 36px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.72);
}

.account-dashboard-page .account-kpi-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0.9;
}

.account-dashboard-page .account-kpi-card__label {
    font-size: 0.74rem;
    margin-bottom: 10px;
}

.account-dashboard-page .account-kpi-card__value {
    font-size: 2rem;
}

.account-dashboard-page .account-kpi-card__meta {
    font-size: 0.84rem;
}

/* =========================================================
   CARDS DO CONTEÚDO
========================================================= */
.account-dashboard-page .account-main .account-card {
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,251,255,0.98) 100%);
    border: 1px solid rgba(222, 232, 243, 1);
    box-shadow:
        0 22px 42px rgba(15, 23, 42, 0.07),
        0 8px 16px rgba(15, 23, 42, 0.03);
}

.account-dashboard-page .account-card__title {
    font-size: 1.45rem;
    margin-bottom: 18px;
}

/* =========================================================
   FEED / ALERTAS EM DESTAQUE
========================================================= */
.account-dashboard-page .account-feed__item,
.account-dashboard-page .account-alert-list__item {
    border-radius: 20px;
    background:
        linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
    border: 1px solid #e3ebf4;
    box-shadow:
        0 8px 18px rgba(15, 23, 42, 0.03),
        inset 0 1px 0 rgba(255,255,255,0.65);
}

.account-dashboard-page .account-feed__top strong,
.account-dashboard-page .account-alert-list__head strong {
    font-size: 1rem;
}

.account-dashboard-page .account-feed__item p,
.account-dashboard-page .account-alert-list__prices,
.account-dashboard-page .account-alert-list__meta {
    font-size: 0.92rem;
}

/* =========================================================
   EMPTY STATES MAIS ELEGANTES
========================================================= */
.account-dashboard-page .account-empty-state {
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px dashed #c7d4e4;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* =========================================================
   FAVORITOS / TABELAS / FORM
========================================================= */
.account-dashboard-page .account-favorite-card,
.account-dashboard-page .account-table-wrap {
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.65);
}

.account-dashboard-page .account-favorite-card {
    border-radius: 24px;
}

.account-dashboard-page .account-favorite-card__title {
    font-size: 1.04rem;
}

.account-dashboard-page .account-favorite-card__price-row strong {
    font-size: 1.65rem;
}

.account-dashboard-page .account-inline-button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.83rem;
}

.account-dashboard-page .account-helper-note {
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
}

/* =========================================================
   ALERTAS E MENSAGENS
========================================================= */
.account-dashboard-page .auth-alert {
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 1200px) {
    .account-dashboard-page .container {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .account-dashboard-page .account-layout {
        grid-template-columns: 1fr;
    }

    .account-dashboard-page .account-card--profile {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .account-dashboard-page .account-panel-head {
        padding: 18px;
        border-radius: 22px;
    }

    .account-dashboard-page .account-panel-head__title {
        font-size: 2rem;
    }

    .account-dashboard-page .account-profile__avatar {
        width: 112px;
        height: 112px;
    }

    .account-dashboard-page .account-kpi-card__value {
        font-size: 1.8rem;
    }
}

/**
 * =========================================================
 * MÓDULO : ACCOUNT PROFILE STRUCTURE POLISH
 * PROJETO: BomVendedor
 * VERSÃO : V14 PROFILE TAB PREMIUM
 * DATA   : 02/04/2026
 * =========================================================
 * OBJETIVO:
 * - reorganizar visualmente a aba Perfil
 * - melhorar estrutura dos dados
 * - transformar formulário bruto em painel premium
 * =========================================================
 */

.account-profile-editor {
    padding: 24px !important;
}

.account-form--profile {
    display: grid;
    gap: 18px;
}

.account-section-block {
    padding: 20px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e2ebf5;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.68);
}

.account-section-block__head {
    margin-bottom: 16px;
}

.account-section-block__head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.account-section-block__head p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.account-profile-editor .auth-field {
    gap: 9px;
}

.account-profile-editor .auth-field label {
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.account-profile-editor .auth-field input,
.account-profile-editor .auth-field select,
.account-profile-editor .auth-field textarea {
    min-height: 52px;
    padding: 0 15px;
    border-radius: 16px;
    border: 1px solid #d8e2ee;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.account-profile-editor .auth-field input[type="file"] {
    min-height: auto;
    padding: 14px;
    border-style: dashed;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}

.account-profile-editor .auth-field input:focus,
.account-profile-editor .auth-field select:focus,
.account-profile-editor .auth-field textarea:focus {
    border-color: #93c5fd;
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10),
        0 8px 18px rgba(37, 99, 235, 0.06);
}

.account-profile-editor .account-orientation-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.account-profile-editor .account-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
}

.account-profile-editor .account-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #2563eb;
}

.account-profile-editor .account-orientation-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.account-profile-editor .account-orientation-inline__input {
    width: 300px;
    max-width: 100%;
}

.account-check-panel {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
    border: 1px solid #e2ebf5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.account-check-panel input[type="checkbox"] {
    margin-top: 3px;
}

.account-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 2px;
}

.account-form-actions__submit {
    width: auto !important;
    min-width: 220px;
}

@media (max-width: 900px) {
    .account-profile-editor .account-orientation-group {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-profile-editor .account-orientation-inline {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .account-profile-editor .account-orientation-inline__input {
        width: 100%;
    }

    .account-form-actions {
        justify-content: stretch;
    }

    .account-form-actions__submit {
        width: 100% !important;
        min-width: 0;
    }
}

/**
 * =========================================================
 * MÓDULO : ACCOUNT SIDEBAR UX REFINEMENT
 * PROJETO: BomVendedor
 * VERSÃO : V15 ACCOUNT SIDEBAR PREMIUM
 * DATA   : 04/04/2026
 * =========================================================
 * OBJETIVO:
 * - elevar a percepção premium do menu lateral
 * - corrigir o botão de logout pequeno/deslocado
 * - criar hierarquia visual mais forte no bloco esquerdo
 * =========================================================
 */

.account-dashboard-page .account-nav {
    gap: 12px;
    padding: 0 16px 16px;
}

.account-dashboard-page .account-nav__title {
    display: block;
    margin: 2px 2px 6px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-dashboard-page .account-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 20px;
    text-decoration: none;
    box-sizing: border-box;
}

.account-dashboard-page .account-nav__main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.account-dashboard-page .account-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    color: #1e3a8a;
    background: linear-gradient(180deg, #eef5ff 0%, #e7f0ff 100%);
    border: 1px solid #d8e6fb;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}

.account-dashboard-page .account-nav__icon svg {
    width: 20px;
    height: 20px;
}

.account-dashboard-page .account-nav__label-group {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-dashboard-page .account-nav__label {
    display: block;
    color: #1e293b;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
}

.account-dashboard-page .account-nav__meta {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
}

.account-dashboard-page .account-nav__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    color: #94a3b8;
    background: rgba(255,255,255,0.92);
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.account-dashboard-page .account-nav__link:hover .account-nav__arrow {
    color: #2563eb;
    border-color: #bfdbfe;
    transform: translateX(2px);
}

.account-dashboard-page .account-nav__link.is-active .account-nav__icon {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

.account-dashboard-page .account-nav__link.is-active .account-nav__label {
    color: #1d4ed8;
}

.account-dashboard-page .account-nav__link.is-active .account-nav__meta {
    color: #4b5563;
}

.account-dashboard-page .account-nav__link.is-active .account-nav__arrow {
    color: #1d4ed8;
    border-color: #bfdbfe;
    background: rgba(255,255,255,0.98);
}

.account-dashboard-page .account-sidebar__footer {
    padding: 2px 16px 20px;
}

.account-dashboard-page .account-logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0 18px;
    box-sizing: border-box;
    text-decoration: none;
}

.account-dashboard-page .account-logout-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.account-dashboard-page .account-logout-link__icon svg {
    width: 22px;
    height: 22px;
}

.account-dashboard-page .account-logout-link__text {
    display: inline-block;
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

@media (max-width: 980px) {
    .account-dashboard-page .account-sidebar__footer {
        padding-bottom: 18px;
    }
}

@media (max-width: 640px) {
    .account-dashboard-page .account-card--profile {
        border-radius: 24px;
    }

    .account-dashboard-page .account-profile {
        padding: 22px 18px 16px;
    }

    .account-dashboard-page .account-side-note {
        margin: 14px;
    }

    .account-dashboard-page .account-nav {
        padding: 0 14px 14px;
    }

    .account-dashboard-page .account-nav__link {
        min-height: 68px;
        padding: 13px 14px;
        border-radius: 18px;
    }

    .account-dashboard-page .account-nav__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
    }

    .account-dashboard-page .account-nav__label {
        font-size: 0.95rem;
    }

    .account-dashboard-page .account-sidebar__footer {
        padding: 2px 14px 16px;
    }

    .account-dashboard-page .account-logout-link {
        min-height: 54px;
        border-radius: 16px;
    }
}

/**
 * =========================================================
 * ARQUIVO : /assets/css/account-profile-compact-polish.css
 * PROJETO : BomVendedor
 * MÓDULO  : Meu Painel - Aba Perfil / Sidebar Profile
 * VERSÃO  : V15 PROFILE COMPACT + AVATAR POLISH
 * AUTOR   : OpenAI + Rodrigo
 * DATA    : 04/04/2026
 * =========================================================
 * OBJETIVO:
 * - refinar visual da foto do perfil na sidebar
 * - ativar grids reais do formulário da aba Perfil
 * - compactar inputs e blocos para reduzir rolagem vertical
 * - manter compatibilidade com a estrutura atual do minha-conta.php
 * =========================================================
 * APLICAÇÃO:
 * - colar este bloco no final do assets/css/style.css
 * - não substituir o arquivo inteiro
 * =========================================================
 */

/* =========================================================
   FOTO DO PERFIL / SIDEBAR
========================================================= */
.account-dashboard-page .account-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.account-dashboard-page .account-profile__avatar {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 4px solid #ffffff;
    outline: 1px solid #d8e4f0;
    box-shadow:
        0 0 0 8px rgba(37, 99, 235, 0.07),
        0 18px 34px rgba(15, 23, 42, 0.16);
    background:
        radial-gradient(circle at top, #ffffff 0%, #f1f6ff 100%);
}

.account-dashboard-page .account-profile__name {
    margin-top: 16px;
    font-size: 1.06rem;
    line-height: 1.2;
}

.account-dashboard-page .account-profile__email {
    font-size: 0.86rem;
    line-height: 1.5;
}

.account-dashboard-page .account-profile__nickname {
    font-size: 0.8rem;
}

.account-dashboard-page .account-profile__status-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* =========================================================
   GRID FUNCIONAL DA ABA PERFIL
========================================================= */
.account-dashboard-page .account-grid {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.account-dashboard-page .account-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-dashboard-page .account-grid--three {
    grid-template-columns:
        minmax(110px, 0.5fr)
        minmax(180px, 0.9fr)
        minmax(200px, 1fr);
}

.account-dashboard-page .account-grid--four {
    grid-template-columns:
        minmax(180px, 1.2fr)
        minmax(90px, 0.5fr)
        minmax(120px, 0.7fr)
        minmax(130px, 0.85fr);
}

.account-dashboard-page .account-grid > * {
    min-width: 0;
}

/* =========================================================
   COMPACTAÇÃO DO FORMULÁRIO
========================================================= */
.account-profile-editor {
    padding: 20px !important;
}

.account-form--profile {
    gap: 14px;
}

.account-section-block {
    padding: 16px 18px;
    border-radius: 20px;
}

.account-section-block__head {
    margin-bottom: 12px;
}

.account-section-block__head h2 {
    font-size: 1rem;
}

.account-section-block__head p {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.55;
}

.account-profile-editor .auth-field {
    gap: 7px;
}

.account-profile-editor .auth-field label {
    font-size: 0.8rem;
    line-height: 1.2;
}

.account-profile-editor .auth-field input,
.account-profile-editor .auth-field select,
.account-profile-editor .auth-field textarea {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 14px;
    font-size: 0.92rem;
}

.account-profile-editor .auth-field input[type="date"] {
    padding-right: 10px;
}

.account-profile-editor .auth-field input[type="file"] {
    min-height: auto;
    padding: 10px 12px;
    border-style: dashed;
    border-radius: 14px;
}

.account-profile-editor .account-orientation-group {
    gap: 12px 18px;
    padding-top: 0;
}

.account-profile-editor .account-radio {
    font-size: 0.88rem;
    gap: 7px;
}

.account-profile-editor .account-radio input[type="radio"] {
    width: 16px;
    height: 16px;
}

.account-profile-editor .account-orientation-inline {
    gap: 10px;
}

.account-profile-editor .account-orientation-inline__input {
    width: 240px;
    max-width: 100%;
}

.account-check-panel {
    padding: 13px 15px;
    border-radius: 16px;
}

.account-check-panel span {
    font-size: 0.88rem;
    line-height: 1.55;
}

.account-form-actions {
    padding-top: 0;
}

.account-form-actions__submit {
    min-width: 200px;
    min-height: 44px;
}

/* =========================================================
   RESPONSIVO INTERMEDIÁRIO
========================================================= */
@media (max-width: 1180px) {
    .account-dashboard-page .account-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .account-dashboard-page .account-grid--three,
    .account-dashboard-page .account-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .account-dashboard-page .account-profile__avatar {
        width: 96px;
        height: 96px;
    }

    .account-dashboard-page .account-grid--two,
    .account-dashboard-page .account-grid--three,
    .account-dashboard-page .account-grid--four {
        grid-template-columns: 1fr;
    }

    .account-profile-editor {
        padding: 16px !important;
    }

    .account-section-block {
        padding: 15px;
    }

    .account-profile-editor .account-orientation-group {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-profile-editor .account-orientation-inline {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .account-profile-editor .account-orientation-inline__input,
    .account-form-actions__submit {
        width: 100% !important;
        min-width: 0;
    }
}

/* =========================================================
   PATCH : PRODUTO FAVORITOS + MEU PAINEL
   ESCOPO: /produto.php
   AÇÃO  : adicionar no final de assets/css/style.css
========================================================= */

.bv-product-flash {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #1e293b;
    font-size: 0.96rem;
    line-height: 1.65;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.bv-product-flash--success {
    border-color: #bbf7d0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    color: #166534;
}

.bv-product-flash--info {
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    color: #1d4ed8;
}

.bv-product-flash--error {
    border-color: #fecaca;
    background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
    color: #b91c1c;
}

.bv-product-main-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.bv-product-favorite-form {
    margin: 0;
}

.bv-product-main-actions .bv-product-main-btn,
.bv-product-main-actions .bv-product-favorite-form,
.bv-product-main-actions .bv-product-favorite-form button {
    width: 100%;
}

.bv-product-main-btn--secondary {
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #0f172a;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.bv-product-main-btn--secondary:hover {
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.bv-product-main-btn--secondary.is-active {
    border-color: #93c5fd;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
}

.bv-product-favorite-hint {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.6;
    font-weight: 700;
}

.bv-product-favorite-hint a {
    color: #2563eb;
    font-weight: 900;
}

@media (max-width: 768px) {
    .bv-product-flash {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .bv-product-favorite-hint {
        align-items: flex-start;
        font-size: 0.9rem;
    }
}

/* =========================================================
   PATCH : PRODUTO ALERTAS DE PREÇO
   ESCOPO: /produto.php
   AÇÃO  : adicionar no final de assets/css/style.css
========================================================= */

.bv-product-alert-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.bv-product-alert-box__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.bv-product-alert-box__head strong {
    display: block;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 900;
}

.bv-product-alert-box__head p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.6;
    font-weight: 700;
}

.bv-product-alert-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.bv-product-alert-form__field {
    display: grid;
    gap: 8px;
}

.bv-product-alert-form__field span {
    color: #334155;
    font-size: 0.88rem;
    font-weight: 900;
}

.bv-product-alert-form__field input {
    height: 54px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 0 16px;
    background: #fff;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.bv-product-alert-form__field input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.bv-product-main-btn--alert {
    min-width: 240px;
}

.bv-product-alert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.87rem;
    line-height: 1.4;
    font-weight: 800;
}

.bv-product-alert-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-actions__form {
    margin: 0;
}

.bv-product-inline-btn,
.bv-product-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bv-product-inline-btn:hover,
.bv-product-inline-link:hover {
    transform: translateY(-1px);
    border-color: #93c5fd;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.bv-product-inline-btn--danger {
    border-color: #fecaca;
    background: #fff5f5;
    color: #b91c1c;
}

.bv-product-alert-guest {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.6;
    font-weight: 700;
}

@media (max-width: 860px) {
    .bv-product-alert-form {
        grid-template-columns: 1fr;
    }

    .bv-product-main-btn--alert {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .bv-product-alert-box {
        padding: 16px;
        border-radius: 18px;
    }

    .bv-product-alert-box__head {
        flex-direction: column;
        margin-bottom: 12px;
    }

    .bv-product-alert-meta span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }

    .bv-product-alert-actions {
        align-items: stretch;
    }

    .bv-product-alert-actions__form,
    .bv-product-inline-btn,
    .bv-product-inline-link {
        width: 100%;
    }
}


/* =========================================================
   BOMVENDEDOR - POLISH PREMIUM
   Escopo: produto.php + minha-conta.php
   Aplicação: colar ao final do assets/css/style.css
   ========================================================= */

/* =========================================================
   PRODUTO - ALERTA PREMIUM
   ========================================================= */
.bv-product-main-btn--alert {
    background: linear-gradient(135deg, #ffbf66 0%, #ff9b2f 100%);
    color: #1f2430;
    border: 1px solid rgba(176, 94, 0, 0.16);
    box-shadow: 0 18px 34px rgba(255, 155, 47, 0.22);
}

.bv-product-main-btn--alert:hover,
.bv-product-main-btn--alert:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(255, 155, 47, 0.3);
    filter: saturate(1.04);
}

.bv-product-main-btn--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bv-product-main-btn__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
}

.bv-product-main-btn__icon svg {
    width: 18px;
    height: 18px;
}

.bv-product-alert-box {
    position: relative;
    margin-top: 14px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 155, 47, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 235, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 34px rgba(17, 24, 39, 0.06);
}

.bv-product-alert-box::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #ffbf66, #ff9b2f);
    opacity: 0.95;
}

.bv-product-alert-box__head strong {
    display: block;
    color: #1c2742;
    font-size: 1.02rem;
}

.bv-product-alert-box__head p {
    margin-top: 4px;
    color: #5e6d86;
}

.bv-product-alert-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.bv-product-alert-form__field span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #24324d;
}

.bv-product-alert-form__field input {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #d7deea;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.bv-product-alert-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-product-alert-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(48, 93, 238, 0.08);
    color: #36507a;
    font-size: 0.78rem;
    font-weight: 600;
}

.bv-product-alert-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.bv-product-inline-btn {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(48, 93, 238, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: #2552d6;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bv-product-inline-btn:hover,
.bv-product-inline-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(39, 76, 180, 0.12);
    border-color: rgba(37, 82, 214, 0.28);
}

.bv-product-inline-btn--danger {
    color: #d24d32;
    border-color: rgba(210, 77, 50, 0.18);
    background: rgba(255, 247, 245, 0.94);
}

.bv-product-inline-link {
    color: #4d6185;
    font-weight: 700;
}

/* =========================================================
   MEU PAINEL - HERO E KPIS
   ========================================================= */
.account-hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 26px;
    border: 1px solid #dbe4f1;
    background:
        radial-gradient(circle at top right, rgba(48, 93, 238, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.92));
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
}

.account-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.14), transparent 32%);
    pointer-events: none;
}

.account-hero-card--success {
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241, 254, 248, 0.92));
}

.account-hero-card--warning {
    background:
        radial-gradient(circle at top right, rgba(255, 166, 0, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255, 249, 239, 0.94));
}

.account-hero-card--progress,
.account-hero-card--news,
.account-hero-card--empty {
    background:
        radial-gradient(circle at top right, rgba(83, 115, 255, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243, 247, 255, 0.94));
}

.account-hero-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #305dee;
}

.account-hero-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.account-hero-card__stat {
    padding: 16px 16px 15px;
    border-radius: 18px;
    border: 1px solid rgba(210, 220, 234, 0.9);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.account-hero-card__stat.is-highlight {
    border-color: rgba(48, 93, 238, 0.18);
    background: rgba(239, 244, 255, 0.94);
}

.account-hero-card__stat.is-money {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(240, 253, 248, 0.96);
}

.account-hero-card__stat-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7b95;
}

.account-hero-card__stat strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.1;
    color: #17213b;
}

.account-hero-card__stat small {
    display: block;
    margin-top: 6px;
    color: #60708a;
}

.account-kpis--enhanced .account-kpi-card {
    position: relative;
    overflow: hidden;
    min-height: 146px;
    border-radius: 22px;
    border: 1px solid #dbe4f1;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.account-kpis--enhanced .account-kpi-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 22px 0 0 22px;
    background: #3f73f5;
}

.account-kpi-card--warning::before {
    background: #f59e0b;
}

.account-kpi-card--favorite::before {
    background: #6366f1;
}

.account-kpi-card--money::before {
    background: #10b981;
}

.account-kpi-card--money.is-positive {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241, 253, 248, 0.94));
    border-color: rgba(16, 185, 129, 0.18);
}

.account-kpi-card--money.is-positive .account-kpi-card__value {
    color: #0f9b6c;
}

.account-kpi-card--money.is-positive .account-kpi-card__meta {
    color: #4d7f6d;
}

/* =========================================================
   MEU PAINEL - FAVORITOS
   ========================================================= */
.account-favorites {
    display: grid;
    gap: 20px;
}

.account-favorite-card {
    border-radius: 24px;
    border: 1px solid #dbe4f1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246, 249, 255, 0.94));
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.account-favorite-card__media {
    background: linear-gradient(180deg, rgba(243, 247, 255, 0.95), rgba(234, 240, 249, 0.95));
    border-radius: 22px;
    min-height: 180px;
}

.account-favorite-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    grid-template-areas:
        "top form"
        "title form"
        "price form"
        "meta form"
        "actions remove";
    gap: 10px 18px;
    align-items: start;
}

.account-favorite-card__top {
    grid-area: top;
}

.account-favorite-card__title {
    grid-area: title;
    margin-bottom: 0;
}

.account-favorite-card__price-row {
    grid-area: price;
    align-items: flex-start;
}

.account-favorite-card__price-row strong {
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: #17213b;
}

.account-favorite-card__price-row span {
    color: #566883;
    font-weight: 700;
}

.account-favorite-card__meta {
    grid-area: meta;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #667791;
}

.account-favorite-card__actions {
    grid-area: actions;
    margin-top: 6px;
}

.account-favorite-card .account-quick-action-form {
    grid-area: form;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(48, 93, 238, 0.12);
    background: linear-gradient(180deg, rgba(244, 248, 255, 0.96), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.account-favorite-card .account-quick-action-form .account-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.account-favorite-card .account-quick-action-form .auth-field label {
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #536681;
}

.account-favorite-card .account-quick-action-form input {
    min-height: 46px;
    border-radius: 14px;
}

.account-favorite-card .account-quick-action-form .account-form-actions {
    justify-content: stretch;
}

.account-favorite-card .account-quick-action-form .account-form-actions__submit {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(39, 76, 180, 0.18);
}

.account-favorite-card__body > .account-inline-form:last-child {
    grid-area: remove;
    align-self: end;
}

.account-favorite-card__body > .account-inline-form:last-child .account-inline-button {
    border-color: rgba(214, 80, 52, 0.16);
    color: #d65034;
    background: rgba(255, 247, 245, 0.9);
}

/* =========================================================
   MEU PAINEL - ALERTAS
   ========================================================= */
.account-alerts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.account-alert-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #dbe4f1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246, 249, 255, 0.94));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.account-alert-card--quase_la {
    border-color: rgba(245, 158, 11, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255, 249, 239, 0.94));
}

.account-alert-card--atingido {
    border-color: rgba(16, 185, 129, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241, 253, 248, 0.94));
}

.account-alert-card--pausado,
.account-alert-card--encerrado {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248, 250, 253, 0.94));
}

.account-alert-card__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.account-alert-card__product strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.35;
    color: #16213a;
}

.account-alert-card__product small {
    display: block;
    margin-top: 6px;
    color: #65758f;
    font-weight: 700;
}

.account-alert-card__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.account-alert-card__metric {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(217, 226, 238, 0.95);
    background: rgba(255, 255, 255, 0.86);
}

.account-alert-card__metric.is-positive {
    border-color: rgba(16, 185, 129, 0.18);
    background: rgba(240, 253, 248, 0.94);
}

.account-alert-card__metric span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #72839d;
}

.account-alert-card__metric strong {
    display: block;
    font-size: 0.98rem;
    color: #1b253f;
}

.account-alert-card__editor {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(48, 93, 238, 0.12);
    background: rgba(245, 248, 255, 0.92);
}

.account-alert-card__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.account-alert-card__field span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #51637e;
}

.account-alert-card__field input {
    min-height: 46px;
    border-radius: 14px;
}

.account-alert-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.account-inline-button--danger-soft {
    color: #d65034;
    border-color: rgba(214, 80, 52, 0.16);
    background: rgba(255, 247, 245, 0.9);
}

/* =========================================================
   RESUMO - FEED E ALERTAS IMPORTANTES
   ========================================================= */
.account-feed__item,
.account-alert-list__item {
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

.account-alert-list__item {
    border-left: 4px solid #3f73f5;
}

.account-alert-list__item .account-chip--success {
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.12);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
    .account-hero-card__stats,
    .account-alerts-grid {
        grid-template-columns: 1fr;
    }

    .account-favorite-card__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "top"
            "title"
            "price"
            "meta"
            "actions"
            "form"
            "remove";
    }

    .account-alert-card__form,
    .bv-product-alert-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .account-hero-card,
    .account-alert-card,
    .account-favorite-card {
        border-radius: 22px;
    }

    .account-alert-card__metrics {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PATCH : Produto alerta em linha dedicada
   ESCOPO: /produto.php
   OBJETIVO:
   - mover o bloco de alerta para uma linha própria abaixo do hero
   - criar padrão reutilizável para produto e futuras grids de ofertas
   ========================================================= */

.bv-product-hero__content {
    display: flex;
    flex-direction: column;
}

.bv-product-alert-box--hero-row {
    width: 100%;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(246, 166, 35, 0.22);
    background: linear-gradient(180deg, rgba(255, 248, 238, 0.96) 0%, rgba(255, 243, 225, 0.92) 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.bv-product-alert-box--hero-row .bv-product-alert-box__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-box__head strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: #1f2937;
}

.bv-product-alert-box--hero-row .bv-product-alert-box__head strong::before {
    content: "🔔";
    font-size: 1rem;
}

.bv-product-alert-box--hero-row .bv-product-alert-box__head p {
    margin: 6px 0 0;
    color: #6b7280;
    line-height: 1.55;
}

.bv-product-alert-box--hero-row .bv-product-alert-form {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(220px, 280px) 1fr;
    gap: 12px;
    align-items: end;
}

.bv-product-alert-box--hero-row .bv-product-alert-form__field {
    margin: 0;
}

.bv-product-alert-box--hero-row .bv-product-alert-form__field span {
    display: block;
    margin-bottom: 7px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
}

.bv-product-alert-box--hero-row .bv-product-alert-form__field input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.88);
}

.bv-product-alert-box--hero-row .bv-product-main-btn--alert {
    min-height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffb347 0%, #ff9f1a 100%);
    color: #1f2937;
    border: 1px solid rgba(230, 138, 0, 0.22);
    box-shadow: 0 12px 24px rgba(255, 159, 26, 0.22);
}

.bv-product-alert-box--hero-row .bv-product-main-btn--alert:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(255, 159, 26, 0.26);
}

.bv-product-alert-box--hero-row .bv-product-alert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #475569;
    font-size: 0.88rem;
}

.bv-product-alert-box--hero-row .bv-product-alert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-guest {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .bv-product-alert-box--hero-row .bv-product-alert-form {
        grid-template-columns: 1fr 1fr;
    }

    .bv-product-alert-box--hero-row .bv-product-main-btn--alert {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .bv-product-alert-box--hero-row {
        padding: 16px;
        border-radius: 18px;
    }

    .bv-product-alert-box--hero-row .bv-product-alert-box__head {
        flex-direction: column;
    }

    .bv-product-alert-box--hero-row .bv-product-alert-form {
        grid-template-columns: 1fr;
    }

    .bv-product-alert-box--hero-row .bv-product-alert-guest {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================================
   PATCH: ALERTA DE PREÇO EM LINHA INFERIOR E LARGURA TOTAL
   ESCOPO: /produto.php
   ========================================================= */

.bv-product-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.bv-product-hero__content {
    min-width: 0;
}

.bv-product-alert-box--hero-row {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
}

.bv-product-alert-box--hero-row .bv-product-alert-box__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-form {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(220px, 320px) 1fr;
    gap: 14px;
    align-items: end;
}

.bv-product-alert-box--hero-row .bv-product-alert-form__field {
    margin: 0;
}

.bv-product-alert-box--hero-row .bv-product-main-btn--alert {
    width: 100%;
    justify-content: center;
}

.bv-product-alert-box--hero-row .bv-product-alert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bv-product-alert-box--hero-row .bv-product-alert-guest {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

@media (max-width: 960px) {
    .bv-product-hero {
        grid-template-columns: 1fr;
    }

    .bv-product-alert-box--hero-row {
        grid-column: auto;
    }

    .bv-product-alert-box--hero-row .bv-product-alert-form {
        grid-template-columns: 1fr;
    }
}





/* ==========================================================================
   ARQUIVO : /assets/css/style.css
   PROJETO : Bom Vendedor
   MÓDULO  : Auth / Minha Conta - contraste e espaçamento de botões primários
   VERSÃO  : V10 SAFE AUTH BUTTON CONTRAST FIX
   AUTOR   : OpenAI + Rodrigo
   DATA    : 22/04/2026
   OBJETIVO: Corrigir texto invisível em botões azuis de ativação/verificação
             sem afetar Home, Produto, Oferta, Categorias, Header ou Footer.
   ========================================================================== */

.auth-button.auth-button--primary,
a.auth-button.auth-button--primary,
button.auth-button.auth-button--primary,
.auth-card__footer a.auth-button.auth-button--primary,
.account-verify-banner__button.auth-button.auth-button--primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 0;
    text-decoration: none !important;
    text-shadow: none;
    opacity: 1;
    visibility: visible;
}

a.auth-button.auth-button--primary:link,
a.auth-button.auth-button--primary:visited,
.auth-button.auth-button--primary:hover,
a.auth-button.auth-button--primary:active,
.auth-card__footer a.auth-button.auth-button--primary:link,
.auth-card__footer a.auth-button.auth-button--primary:visited,
.auth-card__footer a.auth-button.auth-button--primary:hover,
.auth-card__footer a.auth-button.auth-button--primary:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.auth-button.auth-button--primary *,
a.auth-button.auth-button--primary *,
button.auth-button.auth-button--primary *,
.account-verify-banner__button * {
    color: #ffffff !important;
    text-shadow: none;
}

.auth-card__footer a.auth-button.auth-button--primary:hover,
a.auth-button.auth-button--primary:hover,
button.auth-button.auth-button--primary:hover,
.account-verify-banner__button.auth-button.auth-button--primary:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.account-dashboard-page .account-verify-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f5;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.account-dashboard-page .account-verify-banner__content {
    min-width: 0;
}

.account-dashboard-page .account-verify-banner__content strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 950;
}

.account-dashboard-page .account-verify-banner__content p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.account-dashboard-page .account-verify-banner__form {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.account-dashboard-page .account-verify-banner__button.auth-button {
    width: auto;
    min-width: 260px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    white-space: nowrap;
}

.account-dashboard-page .account-main > .auth-alert {
    margin-bottom: 22px;
}

@media (max-width: 860px) {
    .account-dashboard-page .account-verify-banner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .account-dashboard-page .account-verify-banner__form {
        justify-content: stretch;
    }

    .account-dashboard-page .account-verify-banner__button.auth-button {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
}


/* =========================================================
   MEU PAINEL - V2.6.4 FLUXO REAL + PONTE EMAIL
   ========================================================= */
.account-kpis--bridge {
    margin-bottom: 24px;
}

.account-customer-flow {
    margin-bottom: 24px;
    border: 1px solid #dbe4f1;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.account-customer-flow__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.account-flow-step {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #dbe4f1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.94));
}

.account-flow-step.is-done {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,253,248,0.94));
}

.account-flow-step small {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #72839d;
}

.account-flow-step strong {
    display: block;
    margin-bottom: 8px;
    color: #17213b;
    font-size: 1rem;
}

.account-flow-step span {
    display: block;
    color: #60708a;
    line-height: 1.55;
}

.account-customer-flow__footer,
.account-customer-flow__actions,
.account-email-bridge-card__actions,
.account-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.account-customer-flow__footer {
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e4ebf5;
}

.account-customer-flow__score span {
    display: block;
    color: #72839d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.account-customer-flow__score strong {
    display: block;
    margin-top: 4px;
    color: #17213b;
    font-size: 1.2rem;
}

.account-email-bridge-card {
    display: grid;
    gap: 16px;
}

.account-bridge-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.account-bridge-stats__item {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #dbe4f1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.94));
}

.account-bridge-stats__item span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #72839d;
}

.account-bridge-stats__item strong {
    color: #17213b;
    font-size: 1.3rem;
}

.account-bridge-note {
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.16);
    background: rgba(239, 246, 255, 0.9);
    color: #45617f;
    line-height: 1.6;
}

.account-bridge-note.is-positive {
    border-color: rgba(16, 185, 129, 0.18);
    background: rgba(240, 253, 248, 0.92);
    color: #3d6f60;
}

.account-empty-state--rich {
    text-align: left;
}

.account-empty-state--rich strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.02rem;
    color: #17213b;
}

.account-empty-state--rich p {
    margin: 0 0 14px;
    color: #60708a;
    line-height: 1.7;
}

.account-bridge-list {
    margin-top: 20px;
}

.account-bridge-list__items {
    display: grid;
    gap: 12px;
}

.account-bridge-list__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #dbe4f1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.94));
}

.account-bridge-list__item strong {
    color: #17213b;
}

.account-bridge-list__item span {
    color: #60708a;
}

.account-alert-card__badge-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 1080px) {
    .account-customer-flow__grid,
    .account-bridge-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .account-customer-flow__grid,
    .account-bridge-stats {
        grid-template-columns: 1fr;
    }

    .account-customer-flow__footer,
    .account-customer-flow__actions,
    .account-email-bridge-card__actions,
    .account-empty-state__actions,
    .account-bridge-list__item {
        flex-direction: column;
        align-items: stretch;
    }

    .account-alert-card__badge-stack {
        justify-content: flex-start;
    }
}
