/* =========================================================
   Meireles Connect — stylesheet
   ========================================================= */
:root {
    --brand:      #1668D3;
    --brand-dk:   #1050A8;
    --navy:       #0B2D52;
    --navy-lt:    #133a68;
    --dark:       #0D1E30;
    --mid:        #6B7A8D;
    --light:      #EEF3FA;
    --border:     #DDE3EC;
    --white:      #ffffff;
    --orange:     #E8650A;
    --radius:     8px;
    --shadow:     0 2px 12px rgba(0,0,0,.08);
    --shadow-lg:  0 8px 28px rgba(0,0,0,.13);
    --ease:       180ms ease;
    --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --container:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: var(--radius);
    font-size: .875rem; font-weight: 600; cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
    border: 2px solid transparent; line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dk); }
.btn-ghost { color: var(--dark); border-color: var(--border); background: var(--white); }
.btn-ghost:hover { border-color: var(--dark); }
.btn-outline { color: var(--brand); border-color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }
.btn-outline-dark { color: var(--navy); border-color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 13px 30px; font-size: .95rem; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
    background: var(--navy); color: rgba(255,255,255,.8);
    padding: 9px 0; font-size: .78rem; font-weight: 500;
}
.announce-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.announce-left { display: flex; align-items: center; gap: 20px; }
.announce-right { display: flex; align-items: center; gap: 16px; }
.announce-dot { width: 6px; height: 6px; border-radius: 50%; background: #4fa3ff; display: inline-block; margin-right: 6px; flex-shrink: 0; }
.announce-strong { color: #fff; font-weight: 700; }
.announce-sep-v { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.announce-right a { color: rgba(255,255,255,.75); transition: color var(--ease); }
.announce-right a:hover { color: #fff; }
.announce-area {
    background: var(--brand); color: #fff;
    padding: 4px 12px; border-radius: 4px;
    font-size: .74rem; font-weight: 700; letter-spacing: .4px;
    transition: background var(--ease);
}
.announce-area:hover { background: var(--brand-dk); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--white); color: var(--dark);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; display: block; }

.header-search {
    flex: 1; max-width: 420px;
    display: flex; border: 1.5px solid var(--border);
    border-radius: var(--radius); overflow: hidden; background: var(--white);
    transition: border-color var(--ease);
}
.header-search:focus-within { border-color: var(--brand); }
.header-search input {
    flex: 1; padding: 9px 14px; border: none; outline: none;
    font-size: .875rem; font-family: var(--font); background: transparent;
}
.header-search button {
    background: var(--brand); color: #fff; border: none;
    padding: 0 16px; font-size: .875rem; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: background var(--ease);
}
.header-search button:hover { background: var(--brand-dk); }

.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav > a, .nav-link {
    font-size: .875rem; color: var(--mid); font-weight: 500;
    padding: 7px 11px; border-radius: 6px;
    transition: color var(--ease), background var(--ease);
}
.main-nav > a:hover, .main-nav > a.active,
.nav-link:hover, .nav-link.active { color: var(--dark); background: var(--light); }

/* ── Nav dropdowns ── */
.nav-item { position: relative; }
.nav-item::after {
    content: ''; position: absolute;
    bottom: -12px; left: 0; right: 0; height: 12px;
}
.nav-link { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-chevron { flex-shrink: 0; transition: transform .2s ease; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-drop {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 8px; min-width: 210px; z-index: 300;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    white-space: nowrap;
}
.nav-item:hover .nav-drop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-drop-head {
    display: block; font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--mid); padding: 8px 12px 3px;
}
.nav-drop a {
    display: flex; align-items: center; gap: 8px;
    font-size: .84rem; color: var(--dark); font-weight: 500;
    padding: 7px 12px; border-radius: 7px;
    transition: background var(--ease), color var(--ease);
}
.nav-drop a:hover { background: var(--light); color: var(--brand); }
.nav-drop-sep { height: 1px; background: var(--border); margin: 5px 8px; }
.nav-drop-cols { display: flex; }
.nav-drop-col { flex: 1; }
.nav-drop-col + .nav-drop-col { border-left: 1px solid var(--border); }
.nav-drop .nav-drop-all {
    display: block; text-align: center;
    border-top: 1px solid var(--border); margin-top: 4px;
    font-size: .8rem; font-weight: 600; color: var(--brand);
    padding: 9px 12px; border-radius: 0 0 8px 8px;
    transition: background var(--ease);
}
.nav-drop .nav-drop-all:hover { background: var(--light); }
.nav-drop-wide { left: 0 !important; transform: translateX(0) translateY(-8px) !important; }
.nav-item:hover .nav-drop-wide { transform: translateX(0) translateY(0) !important; }

.header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.header-icon-btn {
    width: 40px; height: 40px; border-radius: 50%; background: none;
    border: 1.5px solid var(--border); color: var(--mid);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--ease); position: relative;
    text-decoration: none;
}
.header-icon-btn:hover { border-color: var(--brand); color: var(--brand); }
.cart-badge {
    position: absolute; top: -5px; right: -5px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dk) 100%);
    color: #fff; font-size: .58rem; font-weight: 800;
    min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px -1px rgba(22, 104, 211, .5);
}

/* ── Cart popover (balão de fala estilo macOS) ── */
.cart-wrap { position: relative; }
/* Ponte invisível para não fechar ao passar do ícone para o balão. */
.cart-wrap::after {
    content: ''; position: absolute;
    top: 100%; right: 0; width: 100%; height: 16px;
}
.cart-pop {
    position: absolute; top: calc(100% + 14px); right: -12px;
    width: 374px; max-width: calc(100vw - 28px);
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    backdrop-filter: saturate(180%) blur(18px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 13px;
    box-shadow: 0 18px 50px -12px rgba(11, 45, 82, .28),
                0 6px 16px -8px rgba(11, 45, 82, .18),
                inset 0 1px 0 rgba(255, 255, 255, .7);
    padding: 16px; z-index: 400;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: scale(.8) translateY(-12px);
    transform-origin: top right;
    transition: opacity .22s ease,
                visibility .22s ease,
                transform .3s cubic-bezier(.34, 1.4, .5, 1);
}
.cart-wrap:hover .cart-pop,
.cart-wrap:focus-within .cart-pop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: scale(1) translateY(0);
}
/* Bico do balão (apontado ao ícone do carrinho). */
.cart-pop::before {
    content: ''; position: absolute;
    top: -7px; right: 25px; width: 14px; height: 14px;
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    backdrop-filter: saturate(180%) blur(18px);
    border-top: 1px solid rgba(255, 255, 255, .6);
    border-left: 1px solid rgba(255, 255, 255, .6);
    transform: rotate(45deg); border-radius: 4px 0 0 0;
}

/* Estado vazio */
.cart-pop-empty { text-align: center; padding: 18px 12px 8px; }
.cart-pop-emoji {
    font-size: 2.2rem; display: inline-flex;
    align-items: center; justify-content: center;
    width: 68px; height: 68px; margin-bottom: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #eaf2fe 0%, #dbe8fb 70%, #d2e1f8 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, .9),
                0 6px 16px -6px rgba(22, 104, 211, .35);
    animation: cartBob 2.6s ease-in-out infinite;
}
@keyframes cartBob {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-5px) rotate(3deg); }
}
.cart-pop-empty-title { font-size: 1.02rem; font-weight: 700; color: var(--dark); letter-spacing: -.01em; }
.cart-pop-empty-sub { font-size: .8rem; color: var(--mid); margin: 5px 0 16px; line-height: 1.5; }

/* Cabeçalho + lista */
.cart-pop-head {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--mid);
    padding: 2px 4px 11px; border-bottom: 1px solid rgba(221, 227, 236, .8);
}
.cart-pop-items {
    display: flex; flex-direction: column; gap: 3px;
    max-height: 360px; overflow-y: auto; overscroll-behavior: contain;
    padding: 9px 0; margin: 0 -4px;
}
.cart-pop-items::-webkit-scrollbar { width: 6px; }
.cart-pop-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.cart-pop-items::-webkit-scrollbar-thumb:hover { background: var(--mid); }
.cart-pop-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 8px; border-radius: 12px;
    max-height: 96px; overflow: hidden;
    transition: background var(--ease),
                max-height .35s ease, opacity .3s ease,
                padding .35s ease, margin .35s ease, transform .35s ease;
}
.cart-pop-item:hover { background: rgba(238, 243, 250, .85); }
.cart-pop-link { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }

/* Stepper de quantidade (− n +) */
.cart-pop-qtybox {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 1px;
    background: rgba(107, 122, 141, .09); border-radius: 980px; padding: 2px;
}
.cart-pop-step {
    width: 27px; height: 27px; border: none; background: transparent;
    border-radius: 50%; color: var(--mid); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.cart-pop-step:hover {
    background: var(--white); color: var(--dark);
    box-shadow: 0 1px 4px -1px rgba(11, 45, 82, .25);
}
.cart-pop-step svg { display: block; }
.cart-pop-q {
    min-width: 26px; text-align: center;
    font-size: .85rem; font-weight: 700; color: var(--dark);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   CARRINHO — WALLET (cartões empilhados estilo Apple Wallet)
   ============================================================ */
.cart-wallet { display: flex; flex-direction: column; padding-top: 4px; }

.wallet-card {
    position: relative;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
    padding: 18px 22px 16px;
    box-shadow: 0 14px 32px -18px rgba(11, 45, 82, .26), 0 1px 3px rgba(11, 45, 82, .06);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1),
                box-shadow .42s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
/* sobreposição: cada cartão tapa o anterior (carteira) — mantida sempre */
.wallet-card + .wallet-card { margin-top: -84px; }
/* ao passar o rato, o cartão levanta-se suavemente e vem para a frente */
.wallet-card:hover, .wallet-card:focus-within {
    transform: translateY(-12px);
    box-shadow: 0 26px 50px -22px rgba(11, 45, 82, .38), 0 4px 12px rgba(11, 45, 82, .1);
    z-index: 10;
}

.wallet-head { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; }
.wallet-thumb {
    width: 60px; height: 60px; flex-shrink: 0; border-radius: 14px;
    background: var(--light); border: 1px solid var(--border); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.wallet-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wallet-thumb-ph { font-size: 1.7rem; }
.wallet-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wallet-brand { font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--mid); }
.wallet-name { font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wallet-name:hover { color: var(--brand); }
.wallet-ref { font-size: .74rem; color: var(--mid); font-variant-numeric: tabular-nums; }
.wallet-amount { display: flex; flex-direction: column; align-items: flex-end; text-align: right; flex-shrink: 0; }
.wallet-sub { font-size: 1.26rem; font-weight: 800; letter-spacing: -.02em; color: var(--dark); }
.wallet-unit { font-size: .72rem; color: var(--mid); }

.wallet-foot {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 12px;
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--border);
}
.wallet-warn { font-size: .74rem; font-weight: 600; color: var(--orange); }

.wallet-stepper {
    display: inline-flex; align-items: center; gap: 2px;
    background: rgba(107, 122, 141, .1); border: 1px solid var(--border);
    border-radius: 980px; padding: 3px;
}
.wallet-step {
    width: 30px; height: 30px; border: none; background: transparent; color: var(--mid);
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.wallet-step:hover { background: #fff; color: var(--dark); box-shadow: 0 1px 4px -1px rgba(11, 45, 82, .25); }
.wallet-step svg { display: block; }
.wallet-q { min-width: 30px; text-align: center; font-size: .95rem; font-weight: 700; color: var(--dark); font-variant-numeric: tabular-nums; }

.wallet-del { margin-left: auto; }
.wallet-del-btn {
    width: 38px; height: 38px; border: none; background: var(--light);
    border-radius: 11px; color: var(--mid); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.wallet-del-btn:hover { background: #e4ebf5; color: var(--navy); }
.wallet-del-btn svg { overflow: visible; display: block; }
.wallet-del-btn .lid {
    transform-box: fill-box; transform-origin: right bottom;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.wallet-del-btn:hover .lid, .wallet-del-btn:focus-visible .lid { transform: rotate(-26deg) translateY(-1px); }

/* Caixote do lixo (remove a linha; tampa anima ao passar/clicar) */
.cart-pop-del-form { flex-shrink: 0; }
.cart-pop-del {
    width: 30px; height: 30px; border-radius: 9px;
    border: none; background: transparent; color: var(--mid); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.cart-pop-del:hover,
.cart-pop-del:focus-visible { background: var(--light); color: var(--navy); }
.cart-pop-del svg { overflow: visible; display: block; }
.cart-pop-del .lid {
    transform-box: fill-box; transform-origin: right bottom;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.cart-pop-del:hover .lid,
.cart-pop-del:focus-visible .lid { transform: rotate(-24deg) translateY(-1px); }

/* Estado de remoção: tampa abre por completo e a linha colapsa */
.cart-pop-item.is-removing { background: rgba(11, 45, 82, .05); }
.cart-pop-item.is-removing .cart-pop-del { color: var(--navy); }
.cart-pop-item.is-removing .lid { transform: rotate(-50deg) translateY(-2px); }
.cart-pop-item.is-collapsing {
    max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0;
    margin-top: -4px; row-gap: 0; transform: translateX(14px);
}
.cart-pop-thumb {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 11px; overflow: hidden; background: var(--light);
    border: 1px solid rgba(221, 227, 236, .7);
    box-shadow: 0 2px 6px -2px rgba(11, 45, 82, .18);
    display: flex; align-items: center; justify-content: center;
    transition: box-shadow var(--ease);
}
.cart-pop-item:hover .cart-pop-thumb { box-shadow: 0 4px 12px -3px rgba(11, 45, 82, .28); }
.cart-pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-pop-thumb-ph { font-size: 1.35rem; }
.cart-pop-meta { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.cart-pop-brand {
    font-size: .62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--brand);
}
.cart-pop-name {
    font-size: .85rem; font-weight: 600; color: var(--dark); letter-spacing: -.01em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-pop-qty { font-size: .78rem; color: var(--mid); font-weight: 500; }
.cart-pop-more {
    font-size: .74rem; color: var(--mid); text-align: center; font-weight: 500;
    padding: 4px 0 9px;
}

/* Rodapé */
.cart-pop-foot {
    border-top: 1px solid rgba(221, 227, 236, .8); padding-top: 14px; margin-top: 2px;
    display: flex; flex-direction: column; gap: 12px;
}
.cart-pop-total {
    display: flex; align-items: baseline; justify-content: space-between;
}
.cart-pop-total span { font-size: .68rem; color: var(--mid); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.cart-pop-total strong { font-size: 1.28rem; color: var(--dark); letter-spacing: -.02em; }
.cart-pop-cta {
    position: relative; overflow: hidden;
    font-size: .85rem; font-weight: 500; letter-spacing: .01em;
    padding: 13px 18px; width: 100%;
    border: none; border-radius: 980px;
    color: #fff;
    background: linear-gradient(180deg, var(--navy-lt) 0%, var(--navy) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14),
                0 1px 2px rgba(11, 45, 82, .2),
                0 4px 12px -6px rgba(11, 45, 82, .4);
    transition: transform .25s cubic-bezier(.34, 1.4, .5, 1),
                box-shadow .25s ease, filter .25s ease;
}
/* Brilho que percorre o botão ao passar o rato (toque premium subtil). */
.cart-pop-cta::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .18) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}
.cart-pop-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18),
                0 2px 4px rgba(11, 45, 82, .22),
                0 8px 20px -8px rgba(11, 45, 82, .5);
}
.cart-pop-cta:hover::after { transform: translateX(120%); }
.cart-pop-cta:active { transform: translateY(0) scale(.985); }
.cart-pop-empty .cart-pop-cta { width: 100%; }

.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
    background: none; border: 1px solid var(--border); color: var(--mid);
    padding: 4px 8px; border-radius: 4px; font-size: .7rem;
    cursor: pointer; transition: all var(--ease);
}
.lang-btn:hover, .lang-btn.lang-active { border-color: var(--brand); color: var(--brand); }

.user-menu { display: flex; align-items: center; gap: 8px; }
.user-name { font-size: .85rem; color: var(--dark); font-weight: 600; transition: color var(--ease); }
.user-name:hover { color: var(--brand); }

/* ============================================================
   WELCOME BAR
   ============================================================ */
.welcome-bar { background: #e8f5e9; border-bottom: 1px solid #c8e6c9; padding: 12px 0; text-align: center; font-size: .875rem; color: #2e7d32; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--white); padding: 72px 0 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.hero-content { padding-bottom: 72px; }

.hero-eyebrow {
    display: flex; align-items: center; gap: 10px;
    font-size: .72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--brand); }

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900;
    line-height: 1.08; letter-spacing: -2px; color: var(--dark); margin-bottom: 22px;
}

.hero-sub { font-size: 1rem; color: var(--mid); margin-bottom: 36px; max-width: 440px; line-height: 1.75; }
.hero-sub strong { color: var(--dark); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-serial-btn {
    display: inline-flex; align-items: center; padding: 11px 22px;
    border: 2px solid var(--border); border-radius: var(--radius);
    font-size: .875rem; font-weight: 600; color: var(--dark); background: var(--white);
    transition: border-color var(--ease), color var(--ease);
}
.hero-serial-btn:hover { border-color: var(--brand); color: var(--brand); }

.hero-checks { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.hero-check { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--mid); }
.hero-check::before { content: '✓'; color: var(--brand); font-weight: 800; }

/* Hero right product card */
.hero-visual { align-self: stretch; display: flex; align-items: flex-end; }
.hero-visual-card {
    width: 100%; background: var(--light);
    border-radius: 16px 16px 0 0; border: 1.5px solid var(--border); border-bottom: none;
    padding: 24px; position: relative; min-height: 400px;
    display: flex; flex-direction: column;
}
.hero-vc-badge-top {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px; align-self: flex-start;
    box-shadow: var(--shadow);
}
.hero-vc-num { font-size: 1.6rem; font-weight: 900; color: var(--brand); line-height: 1; }
.hero-vc-label strong { display: block; font-size: .84rem; color: var(--dark); }
.hero-vc-label { font-size: .76rem; color: var(--mid); line-height: 1.4; }
.hero-vc-img {
    flex: 1; display: flex; align-items: center; justify-content: center;
    font-size: .8rem; letter-spacing: 2px; color: var(--mid); opacity: .45;
}
.hero-vc-img::before { content: '[ Fogão Meireles · foto de produto ]'; }
.hero-vc-badge-bottom {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--navy); color: #fff;
    border-radius: 10px; padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(11,45,82,.4);
}
.hero-vc-badge-bottom strong { display: block; font-size: .9rem; font-weight: 800; }
.hero-vc-badge-bottom span { font-size: .74rem; opacity: .7; }

/* ============================================================
   SERIAL SEARCH SECTION
   ============================================================ */
.serial-section { background: var(--navy); color: #fff; padding: 64px 0; }
.serial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.serial-label { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #4fa3ff; margin-bottom: 16px; }
.serial-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: #fff; margin-bottom: 16px; }
.serial-section > .container > .serial-inner > div:first-child p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.serial-section p strong { color: #fff; }

.serial-form-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.serial-form-card label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.serial-row { display: flex; gap: 10px; }
.serial-row input {
    flex: 1; padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: .9rem; font-family: var(--font);
    outline: none; transition: border-color var(--ease);
}
.serial-row input:focus { border-color: var(--brand); }
.serial-row button {
    background: var(--brand); color: #fff; border: none; border-radius: var(--radius);
    padding: 11px 18px; font-size: .875rem; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: background var(--ease);
}
.serial-row button:hover { background: var(--brand-dk); }
.serial-hint { font-size: .76rem; color: var(--mid); margin-top: 10px; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brand); margin-bottom: 8px; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.5px; color: var(--dark); }
.section-link { font-size: .875rem; color: var(--brand); font-weight: 600; flex-shrink: 0; }
.section-link:hover { text-decoration: underline; }
.section-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; color: var(--mid); margin-bottom: 14px; }

/* ============================================================
   CATEGORIES — horizontal card carousel
   ============================================================ */
.categories-section { background: var(--light); padding: 72px 0; }
.cat-carousel-outer { position: relative; padding: 0 24px; margin: 0 -24px; }
.cat-carousel-wrap { overflow: hidden; }
.cat-carousel-track { display: flex; gap: 20px; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.cat-card {
    flex: 0 0 calc(25% - 15px); min-width: 200px;
    background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--border);
    overflow: hidden; transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.cat-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat-card-img {
    aspect-ratio: 4/3; background: var(--light);
    display: flex; align-items: center; justify-content: center;
    color: var(--mid); font-size: .76rem; letter-spacing: 2px;
    position: relative; overflow: hidden;
}
.cat-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 8px,
        rgba(0,0,0,.04) 8px, rgba(0,0,0,.04) 9px
    );
}
.cat-card-img span { position: relative; z-index: 1; opacity: .45; }
.cat-card-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cat-card-body { padding: 16px; }
.cat-card-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.cat-card-count { font-size: .8rem; color: var(--mid); }
.cat-carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); border: 1.5px solid var(--border);
    color: var(--dark); cursor: pointer; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: all var(--ease);
}
.cat-carousel-btn:hover { border-color: var(--brand); color: var(--brand); }
.cat-carousel-btn.prev { left: 0; }
.cat-carousel-btn.next { right: 0; }

/* ============================================================
   WHY MEIRELES — compact 2-col
   ============================================================ */
.why-section { background: var(--white); padding: 80px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-text-col .section-eyebrow { margin-bottom: 12px; }
.why-text-col .section-title { margin-bottom: 20px; }
.why-desc { font-size: .975rem; color: var(--mid); line-height: 1.8; max-width: 440px; }
.why-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--border); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
}
.why-stat { background: var(--white); padding: 32px 28px; }
.why-stat-num {
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
    color: var(--brand); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px;
}
.why-stat-label { font-size: .84rem; color: var(--mid); line-height: 1.4; }

/* ============================================================
   BRANDS — premium layout
   ============================================================ */
.brands-section { background: var(--white); padding: 72px 0; }
.brands-header { margin-bottom: 36px; }
.brands-header .section-title { margin: 8px 0 10px; }
.brands-subtitle { font-size: .9rem; color: var(--mid); max-width: 520px; line-height: 1.65; }
.brands-own-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.brand-own-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 12px; padding: 0; display: flex; flex-direction: column;
    overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.brand-own-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.brand-own-accent { height: 5px; flex-shrink: 0; }
.brand-meireles .brand-own-accent { background: var(--brand); }
.brand-magma .brand-own-accent { background: #2d2d2d; }
.brand-btop .brand-own-accent { background: #1a3a5c; }
.brand-own-body { padding: 24px 24px 20px; display: flex; flex-direction: column; flex: 1; }
.brand-own-tag {
    font-size: .63rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--mid); margin-bottom: 10px;
}
.brand-own-name { font-size: 1.8rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1; margin-bottom: 12px; }
.brand-meireles .brand-own-name { color: var(--brand); }
.brand-magma .brand-own-name, .brand-btop .brand-own-name { color: var(--dark); }
.brand-own-desc { font-size: .875rem; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.brand-own-cta { font-size: .82rem; font-weight: 600; color: var(--brand); }
.brand-own-card:hover .brand-own-cta { text-decoration: underline; }

.brands-partner-label {
    font-size: .68rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--mid); margin-bottom: 16px;
}
.brands-partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.brand-partner-tile {
    background: var(--light); border: 1.5px solid var(--border); border-radius: var(--radius);
    aspect-ratio: 5/2; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.brand-partner-tile:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.brand-partner-letter { font-size: 1.5rem; font-weight: 900; color: var(--border); line-height: 1; }
.brand-partner-name { font-size: .72rem; color: var(--mid); letter-spacing: .5px; }

/* ============================================================
   OUTLET BANNER
   ============================================================ */
.outlet-banner-wrap { background: var(--light); padding: 56px 0; }
.outlet-banner {
    background: var(--navy); color: #fff; border-radius: 16px;
    padding: 48px 56px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.outlet-badge {
    display: inline-block; background: var(--orange);
    color: #fff; font-size: .68rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 5px; margin-bottom: 18px;
}
.outlet-banner h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -.5px; }
.outlet-banner-text p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 440px; }
.outlet-banner .btn-outline-light { padding: 13px 28px; font-size: .9rem; white-space: nowrap; border-width: 2px; }

/* ============================================================
   POST-SALE
   ============================================================ */
.postsale-section { background: var(--light); padding: 72px 0; }
.postsale-top {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 36px; gap: 24px;
}
.postsale-top-left { max-width: 480px; }
.postsale-top-left .section-title { margin-bottom: 8px; }
.postsale-top-left p { font-size: .9rem; color: var(--mid); line-height: 1.7; }
.postsale-top a { font-size: .875rem; color: var(--brand); font-weight: 600; flex-shrink: 0; }
.postsale-top a:hover { text-decoration: underline; }
.postsale-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.postsale-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 22px 18px;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.postsale-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.postsale-num { font-size: .7rem; font-weight: 800; color: var(--brand); letter-spacing: .5px; margin-bottom: 12px; }
.postsale-card h3 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.postsale-card p { font-size: .8rem; color: var(--mid); line-height: 1.6; }

/* ============================================================
   SERVICES SECTION — IKEA style
   ============================================================ */
.services-section { background: var(--light); padding: 72px 0; }
.btn-services-all {
    display: inline-flex; align-items: center; padding: 10px 24px;
    border-radius: 999px; font-size: .875rem; font-weight: 600;
    color: var(--dark); border: 1.5px solid var(--dark); background: transparent;
    white-space: nowrap; transition: background var(--ease), color var(--ease);
}
.btn-services-all:hover { background: var(--dark); color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
    display: flex; flex-direction: column;
    padding: 28px 24px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--border);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.service-card:hover { border-color: var(--brand); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.service-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    color: var(--dark); margin-bottom: 20px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 24px; }
.service-arrow-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--mid); transition: all var(--ease); align-self: flex-start;
}
.service-card:hover .service-arrow-btn { border-color: var(--brand); color: var(--brand); }

/* ============================================================
   CONTACT BANNER
   ============================================================ */
.contact-banner { background: var(--navy); padding: 72px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-label { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #4fa3ff; margin-bottom: 16px; }
.contact-banner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.contact-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 28px; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-info-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 18px 20px;
}
.contact-info-label { font-size: .62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #4fa3ff; margin-bottom: 6px; }
.contact-info-value { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.contact-info-sub { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 60px 0 0; }
.footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col-brand .footer-logo { font-size: 1.3rem; font-weight: 900; letter-spacing: -1px; color: var(--white); margin-bottom: 12px; }
.footer-logo-dot { color: var(--brand); }
.footer-col-brand p { font-size: .84rem; line-height: 1.75; max-width: 220px; margin-bottom: 20px; }
.footer-newsletter label { display: block; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.footer-newsletter-row { display: flex; }
.footer-newsletter-row input {
    flex: 1; padding: 9px 12px; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15); border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: #fff; font-size: .84rem; font-family: var(--font); outline: none;
}
.footer-newsletter-row input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter-row button {
    background: var(--brand); color: #fff; border: none;
    padding: 9px 16px; border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .84rem; font-weight: 700; cursor: pointer; transition: background var(--ease);
}
.footer-newsletter-row button:hover { background: var(--brand-dk); }
.footer-col h4 { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }

.footer-mid {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 700; transition: all var(--ease);
}
.footer-social-btn:hover { border-color: var(--brand); color: var(--white); }
.footer-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-pay-badge {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px; padding: 4px 10px;
    font-size: .64rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .5px;
}
.footer-bottom {
    padding: 16px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .76rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--ease); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-lang {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px; padding: 5px 12px; font-size: .74rem; color: rgba(255,255,255,.55);
}

/* ============================================================
   FEATURED CAROUSEL
   ============================================================ */
.featured-section { background: var(--light); padding: 72px 0; }
.carousel-controls { display: flex; align-items: center; gap: 8px; }
.carousel-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--white);
    color: var(--dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--ease); flex-shrink: 0;
}
.carousel-btn:hover { border-color: var(--brand); color: var(--brand); }
.carousel-wrapper { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.carousel-track .product-card { flex: 0 0 calc(33.333% - 14px); min-width: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); border: none; cursor: pointer; padding: 0;
    transition: background var(--ease), width var(--ease), border-radius var(--ease);
}
.carousel-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease);
    border: 1.5px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-image { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; background: var(--light); }
.type-fogoes  { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.type-placas  { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
.type-fornos  { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); }
.type-pecas   { background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); }
.type-servico { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
.type-default { background: var(--light); }
.badge-outlet { position: absolute; top: 8px; left: 8px; background: var(--orange); color: var(--white); font-size: .68rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; }
.badge-tipo { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.35); color: var(--white); font-size: .68rem; padding: 3px 8px; border-radius: 4px; text-transform: capitalize; }
.product-photo { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 10px; }
.img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 100%; }
.img-placeholder svg { width: 64px; height: 48px; }
.img-placeholder span { font-size: .6rem; font-weight: 700; letter-spacing: 3px; opacity: .45; text-transform: uppercase; }
.product-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.product-brand { font-size: .72rem; color: var(--mid); text-transform: uppercase; letter-spacing: .8px; }
.product-name { font-size: .9rem; font-weight: 600; line-height: 1.3; color: var(--dark); }
.product-ref { font-size: .75rem; color: #bbb; }
.product-footer { padding: 10px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ver-pecas-btn {
    display: block; margin: 0 16px 14px; padding: 8px 0;
    text-align: center; font-size: .8rem; font-weight: 600; color: var(--brand);
    border: 1.5px solid var(--brand); border-radius: var(--radius);
    transition: background var(--ease), color var(--ease);
}
.ver-pecas-btn:hover { background: var(--brand); color: var(--white); }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.product-price.outlet-price { color: var(--orange); }
.stock-badge { font-size: .72rem; padding: 3px 9px; border-radius: 20px; font-weight: 600; white-space: nowrap; }
.stock-ok  { background: #e8f5e9; color: #2e7d32; }
.stock-low { background: #fff3e0; color: var(--orange); }
.stock-out { background: #ffebee; color: #c62828; }

/* ============================================================
   PRODUCT GRID / CATALOG
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.catalog-page { padding: 32px 0 64px; }
.catalog-layout { display: grid; grid-template-columns: 264px 1fr; gap: 28px; align-items: start; }
.filters-sidebar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; position: sticky; top: 84px; border: 1.5px solid var(--border); }
.filter-section-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); margin-bottom: 10px; margin-top: 18px; }
.filter-section-title:first-of-type { margin-top: 0; }
.filter-group { display: flex; flex-direction: column; gap: 7px; }
.filter-option { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .85rem; }
.filter-option input[type="radio"], .filter-option input[type="checkbox"] { accent-color: var(--brand); width: 15px; height: 15px; cursor: pointer; }
.search-box { position: relative; margin-bottom: 16px; }
.search-box input { width: 100%; padding: 9px 40px 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .875rem; font-family: var(--font); transition: border-color var(--ease); }
.search-box input:focus { outline: none; border-color: var(--brand); }
.search-box button { position: absolute; right: 0; top: 0; bottom: 0; width: 38px; background: var(--brand); border: none; border-radius: 0 var(--radius) var(--radius) 0; color: var(--white); cursor: pointer; transition: background var(--ease); }
.search-box button:hover { background: var(--brand-dk); }
.outlet-toggle { display: flex; align-items: center; gap: 9px; padding: 9px 12px; background: #fff8e1; border-radius: var(--radius); border: 1px solid #ffe082; cursor: pointer; font-size: .85rem; }
.outlet-toggle input { accent-color: var(--orange); }
.outlet-toggle span { font-weight: 600; color: var(--orange); }
.filter-apply { margin-top: 20px; width: 100%; padding: 10px; }
.filter-clear { display: block; text-align: center; margin-top: 8px; padding: 8px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .8rem; color: var(--mid); background: none; cursor: pointer; width: 100%; font-family: var(--font); transition: border-color var(--ease), color var(--ease); text-decoration: none; }
.filter-clear:hover { border-color: var(--mid); color: var(--dark); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.catalog-count { font-size: .85rem; color: var(--mid); }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.filter-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; background: #dbeafe; color: var(--brand-dk); font-size: .78rem; font-weight: 600; }
.filter-tag a { color: var(--brand); font-size: .9rem; line-height: 1; font-weight: 700; }

/* ============================================================
   PAGINATION / EMPTY / BREADCRUMB
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; border-radius: var(--radius); font-size: .875rem; border: 1.5px solid var(--border); padding: 0 6px; }
.pagination a { background: var(--white); transition: all var(--ease); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination span.current { background: var(--brand); color: var(--white); border-color: var(--brand); font-weight: 700; }
.pagination span.dots { border: none; color: var(--mid); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--mid); }
.empty-state .es-icon { font-size: 3rem; margin-bottom: 14px; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.breadcrumb { font-size: .8rem; color: var(--mid); margin-bottom: 24px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--mid); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: #ccc; }

/* ============================================================
   ITEM DETAIL
   ============================================================ */
.item-page { padding: 28px 0 80px; }
.item-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.item-image-wrap { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; box-shadow: var(--shadow); background: var(--white); }
.item-photo { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 24px; }
.item-image-wrap .badge-outlet { top: 14px; left: 14px; font-size: .78rem; padding: 5px 12px; }
.item-meta { display: flex; flex-direction: column; gap: 14px; }
.item-brand-label { font-size: .72rem; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.item-name { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; line-height: 1.15; letter-spacing: -.5px; }
.item-ref { font-size: .8rem; color: #bbb; }
.outlet-notice { background: #fff3e0; border: 1px solid #ffe0b2; border-radius: var(--radius); padding: 11px 14px; font-size: .85rem; }
.item-price { font-size: 2rem; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
.item-price.outlet { color: var(--orange); }
.item-stock { display: flex; align-items: center; gap: 8px; }
.item-attrs { display: flex; flex-direction: column; gap: 5px; }
.item-attr { display: flex; gap: 8px; font-size: .875rem; }
.item-attr dt { color: var(--mid); min-width: 130px; }
.item-attr dd { font-weight: 600; }
.item-description { font-size: .95rem; color: var(--mid); line-height: 1.7; }
.item-actions { display: flex; gap: 12px; margin-top: 6px; }
.item-actions .btn { flex: 1; padding: 14px 20px; font-size: .95rem; }
.login-notice { background: var(--light); border-radius: var(--radius); padding: 12px 16px; font-size: .82rem; color: var(--mid); text-align: center; border: 1px solid var(--border); }
.login-notice a { color: var(--brand); font-weight: 600; }
.related-section { margin-top: 56px; }
.items-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

/* ============================================================
   AUTH / PROFILE
   ============================================================ */
.auth-page { min-height: calc(100vh - 68px - 260px); display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px; width: 100%; max-width: 480px; border: 1.5px solid var(--border); }
.auth-card h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.auth-sub { font-size: .875rem; color: var(--mid); margin-bottom: 28px; }
.auth-card-wide { max-width: 640px; }

/* Página de autenticação autónoma (sem navbar/footer) */
.auth-standalone { min-height: 100vh; padding: 32px 20px;
    background: radial-gradient(circle at 25% 15%, #EEF3FA 0%, #DCE6F5 60%, #cdd9ee 100%); }

/* Cartão dividido: marca | formulário */
.login-shell {
    display: flex; width: 100%; max-width: 860px;
    background: var(--white); border-radius: 24px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(11,45,82,.18);
    border: 1px solid rgba(255,255,255,.6);
}

/* Painel da marca (esquerda) */
.login-brand {
    flex: 0 0 44%; padding: 44px 38px; color: #fff;
    background: #1F3864;
    display: flex; flex-direction: column; justify-content: space-between; gap: 36px;
}
.login-brand-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.login-brand-msg h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; letter-spacing: -.01em; }
.login-brand-msg p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.5; }
.login-brand-checks { display: flex; flex-direction: column; gap: 12px; }
.login-brand-check { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.88); }
.login-brand-check svg { color: #4fa3ff; flex-shrink: 0; }

/* Painel do formulário (direita) */
.login-form-panel { flex: 1; padding: 46px 44px; }
.login-form-panel h1 { font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }

/* Inputs em linha (underline) com ícone à esquerda e olho à direita */
.login-form-panel .form-label { display: block; margin: 16px 0 4px; }
.field { display: flex; align-items: center; gap: 10px; border-bottom: 1.5px solid var(--border); padding: 9px 2px; transition: border-color var(--ease); }
.field:focus-within { border-color: var(--brand); }
.field.is-error { border-color: #c62828; }
.field-ico { display: flex; flex-shrink: 0; color: var(--mid); transition: color var(--ease); }
.field:focus-within .field-ico { color: var(--brand); }
.field input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--font); font-size: .95rem; color: var(--dark); padding: 0; }
.field input::placeholder { color: #a9b4c2; }
.field-eye { border: none; background: none; cursor: pointer; color: var(--mid); display: flex; padding: 2px; transition: color var(--ease); }
.field-eye:hover, .field-eye.is-on { color: var(--brand); }

.login-options { display: flex; align-items: center; justify-content: space-between; margin: 2px 0 22px; }
.remember { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--mid); cursor: pointer; user-select: none; }
.remember input { position: absolute; opacity: 0; width: 0; height: 0; }
.remember-box { width: 18px; height: 18px; border: 1.5px solid var(--border); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; transition: background var(--ease), border-color var(--ease); flex-shrink: 0; }
.remember-box::after { content: ""; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform var(--ease); margin-top: -1px; }
.remember input:checked + .remember-box { background: var(--brand); border-color: var(--brand); }
.remember input:checked + .remember-box::after { transform: rotate(45deg) scale(1); }
.remember input:focus-visible + .remember-box { box-shadow: 0 0 0 3px rgba(22,104,211,.25); }
.login-forgot { font-size: .82rem; color: var(--mid); font-weight: 500; }
.login-forgot:hover { color: var(--dark); text-decoration: underline; }

/* Botão Entrar (cor dedicada #1F3864) */
.login-entrar { background: #1F3864; color: #fff; }
.login-entrar:hover { background: #182c4e; }

/* Divisor "ou continua com" */
.login-or { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--mid); font-size: .76rem; text-transform: uppercase; letter-spacing: .5px; }
.login-or::before, .login-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* Botões sociais — squircle minimalista (quadrado de cantos arredondados) */
.login-socials { display: flex; justify-content: center; gap: 14px; }
.social-btn {
    width: 50px; height: 50px; border-radius: 15px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border); background: var(--white);
    box-shadow: 0 1px 2px rgba(11,45,82,.05);
    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.social-btn:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(11,45,82,.12); }

@media (max-width: 720px) {
    .login-brand { display: none; }
    .login-shell { max-width: 440px; }
    .login-form-panel { padding: 40px 30px; }
}

/* =====================================================================
   Hub de autenticação — login <-> registo com inversão de painéis
   Brand (44%) | formulário (56%). O brand desliza; os formulários
   fazem crossfade por baixo. Curva de easing premium.
   ===================================================================== */
.auth-switch {
    position: relative; width: 100%; max-width: 920px; min-height: 700px;
    background: var(--white); border-radius: 24px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(11,45,82,.18);
    border: 1px solid rgba(255,255,255,.6);
}

/* Metades de formulário (absolutas, 56% da largura) */
.auth-pane {
    position: absolute; top: 0; height: 100%; width: 56%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 44px 46px; overflow-y: auto; overflow-x: hidden;
    transition: opacity .5s ease;
}
.auth-pane h1 { font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.auth-pane-login   { right: 0; z-index: 2; opacity: 1; }
.auth-pane-registo { left: 0;  z-index: 1; opacity: 0; pointer-events: none; }
.auth-switch.show-registo .auth-pane-login   { opacity: 0; pointer-events: none; z-index: 1; }
.auth-switch.show-registo .auth-pane-registo { opacity: 1; pointer-events: auto; z-index: 2; }

/* Painel de marca que desliza (44%) */
.auth-overlay-wrap {
    position: absolute; top: 0; left: 0; width: 44%; height: 100%;
    z-index: 10; overflow: hidden;
    transition: transform .7s cubic-bezier(.76,0,.24,1);
}
/* 56/44 * 100% = 127.2727% -> move o brand da esquerda para a direita */
.auth-switch.show-registo .auth-overlay-wrap { transform: translateX(127.2727%); }

.auth-overlay {
    position: relative; width: 100%; height: 100%; background: #1F3864;
}
.auth-overlay::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(79,163,255,.25), transparent 55%);
    pointer-events: none;
}
.auth-overlay-msg {
    position: absolute; inset: 0; padding: 48px 40px; color: #fff;
    display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
    opacity: 0; pointer-events: none; transition: opacity .55s ease;
}
.auth-switch:not(.show-registo) .auth-overlay-login   { opacity: 1; pointer-events: auto; }
.auth-switch.show-registo       .auth-overlay-registo { opacity: 1; pointer-events: auto; }

/* Logótipo no painel de marca — base para o efeito spotlight */
.auth-overlay .login-brand-logo { position: relative; align-self: flex-start; transform-origin: left center; }
.auth-overlay .login-brand-logo::before {
    content: ""; position: absolute; left: 11%; top: 50%;
    width: 340px; height: 340px; transform: translate(-50%, -50%) scale(.4);
    /* Chama de fogão: âmbar quente -> laranja -> transparente */
    background: radial-gradient(circle,
        rgba(255,214,140,.85) 0%,
        rgba(255,150,46,.55) 30%,
        rgba(255,98,20,.22) 50%,
        rgba(255,80,10,0) 68%);
    opacity: 0; pointer-events: none; filter: blur(2px);
}
/* Durante a troca de painéis: pop do logo + ignição de chama (0.7s = duração do slide) */
.auth-switch.is-switching .auth-overlay .login-brand-logo img { transform-origin: left center; animation: logoPop .7s cubic-bezier(.34,1.42,.5,1) both; }
.auth-switch.is-switching .auth-overlay .login-brand-logo::before { animation: logoFlame .7s ease both; }
@keyframes logoPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.95); }
    100% { transform: scale(1); }
}
/* Ignição com flicker de chama */
@keyframes logoFlame {
    0%   { opacity: 0;  transform: translate(-50%, -50%) scale(.35); }
    20%  { opacity: 1;  transform: translate(-52%, -54%) scale(.9); }
    35%  { opacity: .7; transform: translate(-49%, -48%) scale(1.08); }
    50%  { opacity: 1;  transform: translate(-51%, -52%) scale(.98); }
    65%  { opacity: .85; transform: translate(-50%, -50%) scale(1.06); }
    100% { opacity: 0;  transform: translate(-50%, -50%) scale(1.2); }
}

/* Corpo central do painel de marca */
.auth-overlay-body { display: flex; flex-direction: column; gap: 18px; }
.auth-overlay-body h2 { font-size: 1.6rem; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.auth-overlay-body p { font-size: .92rem; color: rgba(255,255,255,.74); line-height: 1.55; max-width: 30ch; }
.auth-overlay-body .login-brand-checks { margin-top: 8px; }

/* Bloco de troca (CTA premium) no rodapé do painel de marca */
.auth-overlay-switch {
    display: flex; flex-direction: column; align-items: stretch;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16);
}

/* Botão fantasma (CTA) — preenche a branco no hover */
.auth-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; padding: 13px 30px; border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,.55);
    background: transparent; color: #fff; font-family: var(--font);
    font-size: .9rem; font-weight: 600; letter-spacing: .2px; cursor: pointer;
    transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.auth-ghost:hover {
    background: #fff; color: #1F3864; border-color: #fff;
    transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.22);
}

/* O link de troca no rodapé do formulário só aparece em mobile
   (no desktop o painel de marca já trata da troca) */
.auth-pane .auth-footer { display: none; }

/* Checklist de requisitos da password (registo) */
.pwd-reqs {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr;
    gap: 4px 16px; margin: 10px 0 0; padding: 0;
}
.pwd-reqs li {
    display: flex; align-items: center; gap: 7px;
    font-size: .76rem; color: var(--mid); transition: color .2s;
}
.pwd-reqs li::before {
    content: ""; width: 14px; height: 14px; flex-shrink: 0; border-radius: 50%;
    border: 1.5px solid #c7cfda;
    background: no-repeat center / 9px 9px;
    transition: background-color .2s, border-color .2s;
}
.pwd-reqs li.ok { color: #2e7d32; }
.pwd-reqs li.ok::before {
    border-color: #2e7d32; background-color: #2e7d32;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Mobile: sem deslize, alterna formulários a largura total */
@media (max-width: 760px) {
    .auth-switch { max-width: 440px; min-height: 0; }
    .auth-overlay-wrap { display: none; }
    .auth-pane { position: static; width: 100%; opacity: 1; pointer-events: auto; padding: 36px 28px; overflow: visible; }
    .auth-pane-registo { display: none; }
    .auth-switch.show-registo .auth-pane-login { display: none; }
    .auth-switch.show-registo .auth-pane-registo { display: flex; }
    .auth-pane .auth-footer { display: block; }
}
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-label .opt { font-weight: 400; color: var(--mid); }
.form-input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9rem; font-family: var(--font); transition: border-color var(--ease); }
.form-input:focus { outline: none; border-color: var(--brand); }
.form-input.is-error { border-color: #c62828; }
.form-hint { font-size: .75rem; color: var(--mid); }
.alert { border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; }
.alert-error { background: #ffebee; border: 1px solid #ffcdd2; }
.alert-error p { font-size: .85rem; color: #c62828; }
.alert-success { background: #e8f5e9; border: 1px solid #c8e6c9; }
.alert-success p { font-size: .85rem; color: #2e7d32; }
.alert p + p { margin-top: 4px; }
.auth-footer { text-align: center; font-size: .875rem; color: var(--mid); margin-top: 24px; }
.auth-footer a { color: var(--brand); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0 20px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-field dt { font-size: .75rem; color: var(--mid); text-transform: uppercase; letter-spacing: .7px; font-weight: 600; margin-bottom: 3px; }
.profile-field dd { font-size: .95rem; font-weight: 500; }

/* ============================================================
   QUICK ACCESS
   ============================================================ */
.quick-access { background: var(--light); padding: 36px 0; border-bottom: 1px solid var(--border); }
.qa-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.qa-card { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--white); border-radius: var(--radius); padding: 22px 12px; text-align: center; border: 1.5px solid transparent; box-shadow: var(--shadow); transition: border-color var(--ease), transform var(--ease); }
.qa-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.qa-card svg { color: var(--brand); }
.qa-card span { font-size: .78rem; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .postsale-grid { grid-template-columns: repeat(3, 1fr); }
    .brands-partner-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
    .footer-top .footer-col:nth-child(4),
    .footer-top .footer-col:nth-child(5) { display: none; }
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
    .hero-visual { display: none; }
    .hero-content { padding-bottom: 48px; }
    .serial-inner { grid-template-columns: 1fr; gap: 36px; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card { flex: 0 0 calc(50% - 10px); }
    .brands-own-grid { grid-template-columns: 1fr; }
    .outlet-banner { flex-direction: column; gap: 24px; padding: 36px 28px; }
    .catalog-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    .item-layout { grid-template-columns: 1fr; gap: 28px; }
    .carousel-track .product-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
    .header-inner { gap: 12px; }
    .header-search { display: none; }
    .main-nav { display: none; }
    .hero-inner { padding-top: 32px; }
    .why-grid { grid-template-columns: 1fr; }
    .postsale-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .brands-partner-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .form-row { grid-template-columns: 1fr; }
    .carousel-track .product-card { flex: 0 0 100%; }
    .qa-grid { grid-template-columns: repeat(3, 1fr); }
    .announce-right { display: none; }
    .footer-mid { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* =====================================================================
   Carrinho de compras
   ===================================================================== */
.cart-page { padding: 40px 0 64px; }
.cart-title { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

/* Lista */
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-row {
    display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; align-items: center;
    background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 16px; transition: box-shadow var(--ease);
}
.cart-row:hover { box-shadow: var(--shadow); }
.cart-thumb {
    width: 96px; height: 96px; border-radius: 12px; overflow: hidden;
    background: var(--white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 6px; }

.cart-info { min-width: 0; }
.cart-brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--mid); }
.cart-name { display: block; font-weight: 700; color: var(--dark); font-size: .98rem; margin: 2px 0; }
.cart-name:hover { color: var(--brand); }
.cart-ref { font-size: .78rem; color: var(--mid); }
.cart-unit { font-size: .82rem; color: var(--mid); margin-top: 4px; }
.cart-warn { font-size: .78rem; color: #c62828; margin-top: 4px; }

.cart-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 30px; overflow: hidden; }
.qty-btn {
    width: 32px; height: 32px; border: none; background: var(--white); cursor: pointer;
    font-size: 1.1rem; color: var(--dark); display: flex; align-items: center; justify-content: center;
    transition: background var(--ease);
}
.qty-btn:hover { background: var(--light); }
.qty-num { min-width: 34px; text-align: center; font-weight: 700; font-size: .9rem; }
.cart-subtotal { font-weight: 800; font-size: 1.05rem; color: var(--dark); white-space: nowrap; }
.cart-remove {
    border: none; background: none; cursor: pointer; color: var(--mid); padding: 4px;
    display: inline-flex; transition: color var(--ease);
}
.cart-remove:hover { color: #c62828; }

.cart-actions-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-continue { font-size: .88rem; font-weight: 600; color: var(--brand); }
.cart-continue:hover { text-decoration: underline; }
.cart-clear { border: none; background: none; cursor: pointer; font-size: .84rem; color: var(--mid); }
.cart-clear:hover { color: #c62828; text-decoration: underline; }

/* Resumo */
.cart-summary {
    background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 24px; position: sticky; top: 20px;
}
.cart-summary h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--dark); margin-bottom: 12px; }
.sum-row span:first-child { color: var(--mid); }
.sum-hint { font-size: .76rem; color: var(--orange, #e65100); margin: -4px 0 12px; }
.sum-total {
    display: flex; justify-content: space-between; align-items: baseline;
    font-weight: 800; font-size: 1.25rem; color: var(--dark);
    border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px;
}
.sum-checkout { width: 100%; padding: 13px; margin-top: 18px; }
.sum-note { text-align: center; font-size: .74rem; color: var(--mid); margin-top: 12px; }

@media (max-width: 860px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 560px) {
    .cart-row { grid-template-columns: 72px 1fr; }
    .cart-thumb { width: 72px; height: 72px; }
    .cart-controls { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
   PÁGINAS DE SERVIÇO
   ============================================================ */
@keyframes svc-pop      { from { opacity:0; transform:scale(.7);       } to { opacity:1; transform:scale(1);       } }
@keyframes svc-fade-up  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0);  } }

.svc-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--brand) 100%);
    color: #fff; padding: 88px 0 96px; text-align: center;
    position: relative; overflow: hidden;
}
.svc-hero::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 65% 0%, rgba(255,255,255,.09) 0%, transparent 60%);
    pointer-events: none;
}
.svc-hero-icon {
    width:76px; height:76px; background:rgba(255,255,255,.14); border-radius:22px;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 24px; backdrop-filter:blur(8px);
    animation: svc-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.svc-hero h1 {
    font-size: clamp(1.9rem,4vw,2.7rem); font-weight:800; margin-bottom:14px;
    animation: svc-fade-up .5s .1s ease both;
}
.svc-hero p {
    font-size:1.05rem; color:rgba(255,255,255,.82);
    max-width:560px; margin:0 auto 32px;
    animation: svc-fade-up .5s .2s ease both;
}
.svc-hero-cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; animation: svc-fade-up .5s .3s ease both; }

.svc-breadcrumb { background:var(--light); padding:10px 0; font-size:.8rem; color:var(--mid); }
.svc-breadcrumb a { color:var(--mid); transition:color var(--ease); }
.svc-breadcrumb a:hover { color:var(--brand); }
.svc-breadcrumb span { margin:0 5px; }

.svc-section-label { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--brand); margin-bottom:6px; }
.svc-section-title { font-size:1.75rem; font-weight:800; margin-bottom:48px; }

.svc-steps-section { padding:80px 0; background:var(--white); }
.svc-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:0; position:relative; }
.svc-steps::before {
    content:''; position:absolute; top:27px;
    left:calc(12.5% + 27px); right:calc(12.5% + 27px);
    height:2px; background:linear-gradient(90deg,var(--brand),var(--border));
}
.svc-step { text-align:center; padding:0 16px; }
.svc-step-num {
    width:54px; height:54px; background:var(--brand); color:#fff;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.1rem; font-weight:800; margin:0 auto 16px;
    position:relative; z-index:1; box-shadow:0 0 0 6px var(--light);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.svc-step:hover .svc-step-num { transform:scale(1.14); box-shadow:0 0 0 8px rgba(22,104,211,.18); }
.svc-step h3 { font-size:.95rem; font-weight:700; margin-bottom:6px; }
.svc-step p  { font-size:.82rem; color:var(--mid); line-height:1.5; }

.svc-benefits-section { padding:72px 0; background:var(--light); }
.svc-benefits { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:18px; }
.svc-benefit {
    background:var(--white); border-radius:14px; padding:28px 22px;
    border:1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease;
}
.svc-benefit:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.svc-benefit-icon {
    width:48px; height:48px; background:var(--light); border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    color:var(--brand); margin-bottom:16px;
    transition: background .2s ease;
}
.svc-benefit:hover .svc-benefit-icon { background:rgba(22,104,211,.12); }
.svc-benefit h3 { font-size:.95rem; font-weight:700; margin-bottom:6px; }
.svc-benefit p  { font-size:.83rem; color:var(--mid); line-height:1.55; }

.svc-form-section { padding:80px 0; background:var(--white); }
.svc-form-wrap {
    max-width:640px; margin:0 auto;
    border:1.5px solid var(--border); border-radius:16px;
    padding:40px 44px; box-shadow:var(--shadow);
}
.svc-form-wrap h2  { font-size:1.4rem; font-weight:800; margin-bottom:4px; }
.svc-form-wrap > p { color:var(--mid); font-size:.875rem; margin-bottom:28px; }
.svc-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.svc-fg { }
.svc-fg.full { grid-column:1/-1; }
.svc-fg label { display:block; font-size:.8rem; font-weight:600; color:var(--dark); margin-bottom:5px; }
.svc-fg input, .svc-fg select, .svc-fg textarea {
    width:100%; padding:9px 13px;
    border:1.5px solid var(--border); border-radius:var(--radius);
    font-size:.875rem; font-family:var(--font);
    color:var(--dark); background:var(--white);
    transition:border-color var(--ease); outline:none;
}
.svc-fg input:focus, .svc-fg select:focus, .svc-fg textarea:focus { border-color:var(--brand); }
.svc-fg textarea { resize:vertical; min-height:110px; }
.svc-fg select { cursor:pointer; }
.svc-submit { width:100%; padding:13px; margin-top:10px; font-size:.95rem; }
.svc-success-icon {
    width:64px; height:64px; background:var(--light); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 16px; color:var(--brand);
    animation: svc-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}

.svc-trust { background:var(--navy); color:#fff; padding:36px 0; }
.svc-trust-inner { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; }
.svc-trust-item { display:flex; align-items:center; gap:10px; font-size:.875rem; font-weight:500; }
.svc-trust-item svg { color:rgba(255,255,255,.6); flex-shrink:0; }

.fade-up { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up-d1 { transition-delay:.12s; }
.fade-up-d2 { transition-delay:.24s; }
.fade-up-d3 { transition-delay:.36s; }

@media (max-width:700px) {
    .svc-form-wrap { padding:28px 20px; }
    .svc-form-grid { grid-template-columns:1fr; }
    .svc-steps::before { display:none; }
    .svc-trust-inner { gap:24px; }
}
