/* ==========================================
   GLOBAL SETTINGS E VARIÁVEIS (Estilo Acena)
========================================== */
:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #000000;
    --sec-text-color: #777777;
    --border-color: #eaeaea;
    --hover-color: #000000;
    --acena-green: #18b957;
    --soft-green: #effaf3;
    --soft-gray: #f6f6f4;
    --ink-soft: #202020;
    --checkout-bg: #08090b;
    --checkout-panel: #111317;
    --checkout-panel-strong: #171a20;
    --checkout-line: rgba(255,255,255,0.12);
    --checkout-muted: #9aa0aa;
    --checkout-gold: #d7b56d;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --sidebar-width: 280px;
    --card-radius: 8px;
    --btn-radius: 25px;
}

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

html, body {
    max-width: 100vw; /* TRAVA PARA O MOBILE NÃO VAZAR */
    overflow-x: hidden; /* TRAVA PARA O MOBILE NÃO VAZAR */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

::selection { background: #000; color: #fff; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==========================================
   BOTÕES GLOBAIS
========================================== */
.btn {
    display: inline-block; padding: 12px 30px; background-color: var(--accent-color);
    color: #ffffff; font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
    border: none; border-radius: var(--btn-radius); cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; text-align: center;
}
.btn:hover { background-color: #333333; transform: translateY(-2px); }
.btn-outline { background-color: transparent; color: var(--accent-color); border: 1px solid var(--accent-color); }
.btn-outline:hover { background-color: var(--accent-color); color: #ffffff; }
.btn-small { padding: 8px 15px; font-size: 0.85rem; }

/* ==========================================
   HEADER (ESTILO ACENA PRETO)
========================================== */
.main-header {
    background-color: #000000 !important; color: #ffffff !important;
    display: flex; justify-content: space-between; align-items: center;
    gap: 28px;
    padding: 18px 5%; border-bottom: none !important; position: sticky; top: 0; z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.mobile-logo-header, .mobile-cart-action { display: none; }
.desktop-logo-header { flex: 0 0 auto; display: flex; align-items: center; }
.desktop-logo-header img { width: 148px; max-height: 54px; object-fit: contain; }
.search-container { flex-grow: 1; max-width: 680px; margin: 0; }
.search-container form { background: #ffffff !important; border-radius: 999px; padding: 3px 10px 3px 18px; display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.2) !important; }
.search-container input { background: transparent; border: none; color: #000 !important; padding: 12px 5px; flex-grow: 1; outline: none; font-size: 0.95rem; }
.search-container button { background: transparent; border: none; color: #000 !important; padding: 10px; cursor: pointer; font-size: 1.1rem; }
.header-user-actions { display: flex; align-items: center; gap: 22px; }
.user-link { color: #ffffff !important; font-weight: 500; font-size: 0.95rem; white-space: nowrap; }
.desktop-cart-btn { color: #ffffff !important; font-size: 1.25rem; position: relative; display: flex; align-items: center; gap: 10px; font-weight: 500; padding: 10px 14px; border: 1px solid #2a2a2a; border-radius: 999px; }
.desktop-cart-count, .cart-badge { background: var(--acena-green); color: #fff; border-radius: 50%; padding: 2px 6px; font-size: 0.75rem; position: relative; top: -10px; right: 5px; font-weight: bold; }

/* NAVBAR HORIZONTAL ACENA */
.acena-top-nav { background-color: #000000; border-top: 1px solid #1a1a1a; padding: 0 5%; position: relative; z-index: 90; }
.acena-top-nav ul { display: flex; gap: 6px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.acena-top-nav ul::-webkit-scrollbar { display: none; }
.acena-top-nav a { color: #ffffff; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; display: block; padding: 15px 14px; border-radius: 999px; white-space: nowrap; }
.acena-top-nav a:hover { color: var(--acena-green); }

/* SIDEBAR & RESPONSIVIDADE */
.sidebar { width: var(--sidebar-width); background-color: #000; border-right: 1px solid #333; height: 100vh; position: fixed; top: 0; left: 0; padding: 2rem; z-index: 1000; display: flex; flex-direction: column; justify-content: space-between; }
.logo { padding: 0px 10px 25px 10px; } .logo img { width: 180px; }
.nav-menu { flex-grow: 1; overflow-y: auto; } .nav-item { margin-bottom: 1.5rem; }
.nav-link { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: #a0a0a0; }
.nav-link:hover, .nav-link.active { color: #fff; padding-left: 10px; } .nav-link i { font-size: 0.8rem; transition: transform 0.3s; }
.nav-item.active .nav-link i { transform: rotate(180deg); }
.submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding-left: 1rem; border-left: 1px solid #333; margin-top: 0.5rem; margin-left: 5px; }
.nav-item.active .submenu { max-height: 500px; } .submenu li { margin: 0.8rem 0; }
.submenu a { color: #888; font-size: 0.9rem; } .submenu a:hover { color: #fff; }
.sidebar-footer { border-top: 1px solid #333; padding-top: 1.5rem; }
.user-actions a { display: block; margin-bottom: 0.8rem; color: #a0a0a0; font-size: 0.9rem; } .user-actions a:hover { color: #fff; }
.sidebar-social { display: none; justify-content: center; gap: 20px; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid #333; }
.social-btn { width: 45px; height: 45px; border-radius: 50%; background: #111; border: 1px solid #333; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: all 0.3s ease; }
.social-btn.whatsapp { color: #25D366; } .social-btn.instagram { color: #E1306C; } .social-btn.location { color: #fff; }
.social-btn:hover { transform: translateY(-5px); border-color: #fff; background: #222; }

@media (min-width: 901px) { .sidebar { display: none !important; } .mobile-toggle { display: none; } }
@media (max-width: 900px) {
    .acena-top-nav { display: none; }
    .sidebar { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; transition: 0.3s ease; }
    .sidebar.open { left: 0; transform: translateX(0); }
    .main-header { padding: 10px 15px; flex-wrap: wrap; gap: 10px; position: relative; }
    body:has(.main-header) > .mobile-toggle { display: none; }
    .main-header .mobile-toggle { display: block; }
    .mobile-logo-header, .mobile-cart-action { display: flex; align-items: center; }
    .desktop-logo-header { display: none; }
    .mobile-logo-header { flex: 1; justify-content: center; } .mobile-logo-header img { height: 30px; }
    .search-container { width: 100%; max-width: 100%; margin: 10px 0 0 0; order: 3; }
    .search-container form { background: #fff !important; }
    .mobile-toggle { display: block; color: #fff; font-size: 1.5rem; cursor: pointer; order: 1; }
    .mobile-cart-action { order: 2; font-size: 1.3rem; }
    .header-user-actions { display: none; } .sidebar-social { display: flex; }
}

/* ==========================================
   MAIN CONTENT & HERO SLIDER (CORREÇÃO AQUI!)
========================================== */
.main-content {
    margin-left: 0; /* Removendo os 280px vazando */
    width: 100%;    /* Forçando o conteúdo a respeitar a tela */
    max-width: 100vw;
    flex-grow: 1;
}

.hero-slider { position: relative; width: 100%; height: min(72vh, 720px); min-height: 520px; overflow: hidden; background: #000; }
.hero-slider::after { content: ""; position: absolute; inset: auto 0 0; height: 24%; background: linear-gradient(to top, rgba(0,0,0,0.22), transparent); z-index: 3; pointer-events: none; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; background-size: cover; background-position: 50% 34%; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; z-index: 1; }
.slide-link { display: block; width: 100%; height: 100%; position: absolute; z-index: 2; top: 0; left: 0;}
@media (max-width: 768px) { .hero-slider { height: 42vh; min-height: 310px; } }
@media (max-width: 480px) { .hero-slider { height: 30vh; min-height: 270px; } }

.acena-banners-row { display: flex; gap: 14px; padding: 22px 7% 4px; background: #ffffff; }
.acena-banner-item { flex: 1; border-radius: 8px; overflow: hidden; background: var(--soft-gray); min-height: 118px; max-height: 190px; }
.acena-banner-item img { width: 100%; height: 100%; min-height: 118px; max-height: 190px; object-fit: cover; transition: transform 0.4s; }
.acena-banner-item:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
    .acena-banners-row {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 0;
        padding: 14px 0 10px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }

    .acena-banners-row::-webkit-scrollbar { display: none; }

    .acena-banner-item {
        flex: 0 0 100%;
        width: 100%;
        min-height: 0;
        max-height: none;
        border-radius: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .acena-banner-item img {
        display: block;
        width: calc(100% - 28px);
        height: clamp(155px, 46vw, 210px);
        margin: 0 auto;
        min-height: 0;
        max-height: none;
        object-fit: cover;
        border-radius: 8px;
    }

    .acena-banner-item:hover img { transform: none; }
}


/* ==========================================
   NAVEGAÇÃO RÁPIDA (Estilo Exato da Foto)
========================================== */
.quick-nav-section { 
    background-color: #ffffff; 
    padding: 18px 5%; 
    border-bottom: 1px solid #eeeeee; 
    border-top: 1px solid #f0f0f0;
}
.section-title-dark { display: none; } 

.quick-nav-grid { 
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    gap: 1rem; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    overflow-y: hidden;
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 8px 0; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.quick-nav-grid::-webkit-scrollbar { display: none; }

.quick-nav-item { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    color: #000; 
    flex: 0 0 auto; 
    min-width: 150px;
    padding: 8px 16px 8px 8px;
    border: 1px solid #eeeeee;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.quick-nav-thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--soft-gray);
    overflow: hidden;
}

.quick-nav-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 50%; 
    border: none;
    box-shadow: none; 
    transition: transform 0.3s; 
}

.quick-nav-item:hover { border-color: #dcdcdc; transform: translateY(-2px); }
.quick-nav-item:hover img { transform: scale(1.07); }
.quick-nav-item > span:not(.quick-nav-thumb) { margin-top: 0; font-size: 0.85rem; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: 0.5px; }

.quick-nav-grid::after {
    content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    font-size: 1.2rem; color: #000; padding-left: 10px; align-self: center;
}

@media (max-width: 768px) {
    .quick-nav-grid { padding-left: 0; gap: 0.75rem; }
    .quick-nav-item { min-width: 132px; padding-right: 12px; }
    .quick-nav-thumb { width: 48px; height: 48px; flex-basis: 48px; }
    .quick-nav-item img { width: 100%; height: 100%; }
    .quick-nav-item > span:not(.quick-nav-thumb) { font-size: 0.75rem; }
    .quick-nav-grid::after { display: none; } 
}

.promo-wide-banner {
    padding: 20px 5% 8px;
    background: #fff;
}
.promo-wide-banner picture,
.promo-wide-banner img {
    display: block;
    width: 100%;
}
.promo-wide-banner img {
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
}

.prefooter-showcase {
    padding: 54px 5% 60px;
    background:
        linear-gradient(135deg, rgba(215,181,109,0.13), transparent 32%),
        linear-gradient(180deg, #111317 0%, #060708 100%);
    color: #fff;
}

.prefooter-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 34px;
    align-items: stretch;
}

.prefooter-copy {
    min-height: 360px;
    padding: clamp(28px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.18)),
        url('../imagens/loja.jpeg') center/cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
    overflow: hidden;
}

.prefooter-kicker {
    width: fit-content;
    padding: 8px 12px;
    color: #090909;
    background: var(--checkout-gold);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prefooter-copy h2 {
    max-width: 680px;
    margin: 20px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.prefooter-copy p {
    max-width: 560px;
    color: #d5d8de;
    font-size: 1rem;
}

.prefooter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.prefooter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prefooter-btn.primary {
    background: #fff;
    color: #050607;
}

.prefooter-btn.ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.07);
}

.prefooter-btn:hover { transform: translateY(-2px); }

.prefooter-perks {
    display: grid;
    gap: 14px;
}

.prefooter-perk {
    min-height: 110px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.055);
}

.prefooter-perk i {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--checkout-gold);
    border: 1px solid rgba(215,181,109,0.4);
    border-radius: 50%;
    font-size: 1.15rem;
}

.prefooter-perk strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.prefooter-perk span {
    color: #aeb4bf;
    font-size: 0.9rem;
}

.categories-home-section {
    padding: 54px 5%;
    background: #fff;
}

.categories-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
}

.categories-heading span {
    color: #777;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.categories-heading h2 {
    color: #000;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.categories-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.category-home-card {
    position: relative;
    min-height: 340px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #0b0b0b;
}

.category-home-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-home-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.78));
}

.category-home-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
}

.category-home-info span {
    display: block;
    margin-bottom: 8px;
    color: var(--checkout-gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-home-info strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.category-home-info em {
    width: fit-content;
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    color: #050607;
    background: #fff;
    border-radius: 999px;
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-home-card:hover img { transform: scale(1.06); }

@media (min-width: 901px) {
    .main-header,
    .acena-top-nav,
    .quick-nav-section,
    .acena-banners-row,
    .products-section,
    .categories-home-section,
    .prefooter-showcase {
        padding-left: clamp(72px, 7vw, 132px);
        padding-right: clamp(72px, 7vw, 132px);
    }
}

@media (max-width: 900px) {
    .prefooter-showcase { padding: 36px 16px 42px; }
    .prefooter-inner { grid-template-columns: 1fr; }
    .prefooter-copy { min-height: auto; }
    .categories-home-section { padding: 36px 16px; }
    .categories-heading { align-items: flex-start; flex-direction: column; }
    .category-home-card { min-height: 240px; }
    .category-home-card img { min-height: 240px; }
}

@media (max-width: 560px) {
    .prefooter-actions { flex-direction: column; }
    .prefooter-btn { width: 100%; }
    .prefooter-perk { grid-template-columns: 1fr; }
    .prefooter-perk i { grid-row: auto; margin-bottom: 14px; }
}

/* ==========================================
   SEÇÕES DE PRODUTOS E CARDS
========================================== */
.products-section { padding: 44px 5%; background-color: #ffffff; }
.section-title { font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 800; color: #000000; text-transform: uppercase; text-align: left; margin-bottom: 26px; letter-spacing: 0; font-family: var(--font-body); border-left: none; padding-left: 0; display: flex; align-items: center; gap: 14px; }
.section-title::after { content: ""; height: 1px; flex: 1; background: #e9e9e9; }
@media (min-width: 901px) {
    .products-section {
        padding-left: clamp(72px, 7vw, 132px);
        padding-right: clamp(72px, 7vw, 132px);
    }
}
/* ==========================================
   CARROSSEL DE PRODUTOS E SETAS DE ROLAGEM
========================================== */
.carousel-wrapper { 
    position: relative; 
    width: 100%; 
}

/* SETAS DO CARROSSEL (Visíveis apenas no Desktop) */
.carousel-arrow {
    position: absolute; 
    top: 40%; /* Ajuste fino para ficar alinhado com a foto do produto */
    transform: translateY(-50%);
    background: #ffffff; 
    color: #000000; 
    border: 1px solid #eaeaea;
    width: 45px; 
    height: 45px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    z-index: 10; 
    transition: all 0.3s ease; 
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-arrow:hover { 
    background: #000000; 
    color: #ffffff; 
    border-color: #000000; 
}

.carousel-arrow.prev { left: -20px; }
.carousel-arrow.next { right: -20px; }

/* Esconde as setas em telas menores (Mobile/Tablet usam o dedo) */
@media (max-width: 900px) { 
    .carousel-arrow { display: none !important; } 
}

/* Grade de Produtos */
.product-grid, .grid-produtos {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
    scroll-behavior: smooth; /* Rolagem suave ao clicar nas setas */
}
.product-grid::-webkit-scrollbar, .grid-produtos::-webkit-scrollbar { display: none; }
.grid-produtos { flex-wrap: wrap; overflow-x: visible; }

.product-grid, .grid-produtos {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.product-grid::-webkit-scrollbar, .grid-produtos::-webkit-scrollbar { display: none; }
.grid-produtos { flex-wrap: wrap; overflow-x: visible; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-flow: row;
    gap: 26px 20px;
    align-items: start;
    overflow: visible;
    padding-bottom: 8px;
}
.product-grid--two-lines,
.product-grid--one-line { grid-template-rows: none; }

.acena-card, .product-card {
    background: #ffffff; display: flex; flex-direction: column; width: 270px;
    flex-shrink: 0; scroll-snap-align: start; text-decoration: none;
    border: 1px solid transparent; border-radius: 8px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden;
}
.product-grid .acena-card { width: 100%; min-width: 0; }
.grid-produtos .product-card { width: calc(33.333% - 15px); min-width: 250px; }
.acena-card:hover, .product-card:hover {  transform: translateY(-5px); border-color: #ececec; box-shadow: 0 18px 45px rgba(0,0,0,0.08); }

.acena-card-img-wrapper, .product-image { position: relative; background: var(--soft-gray); width: 100%; height: 330px; overflow: hidden; border-radius: 8px; }
.acena-card-img-wrapper img, .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.acena-card:hover .acena-card-img-wrapper img, .product-card:hover .product-image img { transform: scale(1.05); }

.acena-frete-tag { 
    position: absolute; top: 10px; left: 10px; background: #ffffff; 
    color: var(--acena-green); padding: 5px 9px; font-size: 0.72rem; 
    font-weight: 800; border: 1px solid rgba(24,185,87,0.4); border-radius: 999px; 
    display: flex; align-items: center; gap: 5px; z-index: 2; letter-spacing: 0.5px; 
}

.acena-card-info, .product-info { padding: 16px 4px 4px; text-align: left; background-color: #fff; }
.acena-card-title, .product-info h4 { font-weight: 500; font-size: 0.98rem; color: #333333; margin-bottom: 8px; min-height: 3em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; white-space: normal; overflow: hidden; text-overflow: ellipsis; text-transform: none; line-height: 1.45; }
.acena-card-old-price { font-size: 0.8rem; color: #999999; text-decoration: line-through; display: block; margin-bottom: 2px; }
.acena-card-price-row, .product-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 15px; }
.product-meta { justify-content: space-between; align-items: center; margin-bottom: 0; } .product-meta span:first-child { font-size: 0.85rem; color: var(--sec-text-color); }
.acena-card-price, .price { font-size: 1.3rem; font-weight: 800; color: #000000; }
.acena-card-discount { color: var(--acena-green); font-size: 0.9rem; font-weight: 600; }

.acena-card-btn {
    background: #000000; color: #ffffff; border: none; padding: 12px 25px;
    border-radius: 999px; font-weight: 800; font-size: 0.82rem; cursor: pointer;
    transition: background 0.3s, transform 0.2s; text-transform: uppercase; display: block; width: 100%; text-align: center; margin-top: 10px;
}
.acena-card-btn:hover { background: #222222; transform: translateY(-1px); }

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
    .acena-card { width: 200px; } .grid-produtos .product-card { width: calc(50% - 10px); min-width: 150px; }
    .acena-card-img-wrapper, .product-image { height: 205px; } .acena-card-price, .price { font-size: 1.05rem; } .acena-card-btn { font-size: 0.76rem; padding: 10px 12px; }
    .acena-card-title, .product-info h4 { font-size: 0.88rem; }
}

/* ==========================================
   IMAGEM DE ESGOTADO 
========================================== */
.img-esgotada, .img-esgotada-main { opacity: 0.5; filter: grayscale(100%); }
.badge-esgotado { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; border: none; pointer-events: none; z-index: 10; }
.img-carimbo-esgotado, .badge-esgotado img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150px !important; max-width: 80%; height: auto !important; pointer-events: none; filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3)); }

/* ==========================================
   PÁGINA DETALHES DO PRODUTO 
========================================== */
.product-details-container { background-color: #ffffff; color: #1a1a1a; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 2rem; max-width: 1400px; margin: 0 auto; }
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.product-gallery-main { position: relative; overflow: hidden; display: inline-block; width: 100%; border-radius: 0;}
.main-image { width: 100%; height: 600px; object-fit: cover; border-radius: 0; border: none; background: #ffffff; }
.thumbnail-list { display: flex; gap: 1rem; }
.thumbnail { width: 100px; height: 100px; object-fit: cover; border-radius: 0; border: 2px solid transparent; background: #ffffff; cursor: pointer; opacity: 0.6; transition: 0.3s; }
.thumbnail:hover, .thumbnail.active { opacity: 1; border-color: #000; }

.product-info-text h1 { font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 700; color: #000; margin-bottom: 0.5rem; line-height: 1.2; text-transform: none;}
.details-price-row { display: flex; align-items: baseline; gap: 15px; margin-bottom: 2rem; border-bottom: 1px solid #eaeaea; padding-bottom: 1rem; }
.old-price-details { font-size: 1.2rem; color: #999; text-decoration: line-through; }
.discount-badge-details { background-color: transparent; color: var(--acena-green); padding: 4px 10px; font-weight: 700; font-size: 0.9rem; }
.product-description { color: #555; font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; }
.selector-label { color: #333; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 10px; }

.size-selector { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.size-option { width: 45px; height: 45px; border: 1px solid #ccc; border-radius: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: #333; background: #fff; font-weight: 500; }
.size-option:hover { border-color: #000; }
.size-option.selected { border-color: #000; background: #000; color: #fff; font-weight: 700;}
.size-option.disabled { opacity: 0.4; cursor: not-allowed; background-color: #f9f9f9; color: #aaa; text-decoration: line-through; border-color: #eee; pointer-events: none; }

.colors-selector { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
.color-option { border: 2px solid #ccc; cursor: pointer; transition: 0.2s; border-radius: 50%; width: 40px !important; height: 40px !important; }
.color-option:hover { transform: scale(1.1); border-color: #000;}
.color-option.selected { border-color: #000; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000; transform: scale(1.1); }

.add-to-cart-btn { width: fit-content; padding: 18px 40px; background: #000; color: #fff; font-family: 'Inter', sans-serif; font-size: 1.1rem; text-transform: uppercase; border: none; border-radius: var(--btn-radius); cursor: pointer; transition: 0.3s; font-weight: 700; letter-spacing: 1px; }
.add-to-cart-btn:hover { background: #333; transform: translateY(-2px); }
.btn-esgotado { background-color: #f5f5f5 !important; color: #999 !important; cursor: not-allowed !important; border: 1px solid #ddd; box-shadow: none;}

@media (max-width: 900px) { .product-details-container { grid-template-columns: 1fr; padding: 1rem; } .main-image { height: 400px; } }

/* ==========================================
   PÁGINA DE LOGIN E FORMS
========================================== */
.form-container { max-width: 450px; margin: 4rem auto; padding: 3rem 2rem; border: 1px solid var(--border-color); background: #ffffff; border-radius: var(--card-radius); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.form-title { font-family: var(--font-heading); text-transform: uppercase; text-align: center; margin-bottom: 2rem; font-size: 2rem; color: var(--accent-color); font-weight: 800; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: #444; font-weight: 600; }
.form-control { width: 100%; padding: 12px 15px; background: #fcfcfc; border: 1px solid #ddd; color: #000; font-family: var(--font-body); border-radius: 6px; transition: border-color 0.3s, box-shadow 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 2px rgba(0,0,0,0.1); }
.form-actions { margin-top: 1.5rem; text-align: center; }
.form-link { display: inline-block; margin-top: 1rem; font-size: 0.9rem; color: #666; text-decoration: none; border-bottom: 1px solid #ccc; transition: color 0.3s; }
.form-link:hover { color: var(--accent-color); border-color: var(--accent-color); }
@media (max-width: 900px) { .form-container { margin: 3rem 1rem; padding: 2rem 1.5rem; } }

/* ==========================================
   CARRINHO E CHECKOUT
========================================== */
.checkout-shell {
    position: relative;
    min-height: 720px;
    padding: 46px 5% 64px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, #15181d 0%, var(--checkout-bg) 46%, #050607 100%);
    color: #fff;
    overflow: hidden;
}
.checkout-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(215,181,109,0.12), transparent 34%, rgba(24,185,87,0.1));
    pointer-events: none;
}
.checkout-shell > * { position: relative; z-index: 1; }
.checkout-hero {
    max-width: 1320px;
    margin: 0 auto 24px;
    padding: 20px 0 10px;
}
.checkout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--checkout-gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.checkout-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}
.checkout-hero h1 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.checkout-hero p {
    max-width: 620px;
    margin-top: 14px;
    color: #c5c8ce;
    font-size: 1rem;
}
.checkout-steps {
    max-width: 1320px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--checkout-line);
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    overflow: hidden;
}
.checkout-steps span {
    position: relative;
    padding: 14px 18px;
    color: #a6abb5;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}
.checkout-steps span + span { border-left: 1px solid var(--checkout-line); }
.checkout-steps .active {
    color: #070707;
    background: linear-gradient(135deg, #f4f0df, var(--checkout-gold));
}
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.9fr);
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: start;
}
.cart-items,
.shipping-form,
.payment-form,
.order-summary {
    background: linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
    border: 1px solid var(--checkout-line);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.34);
    backdrop-filter: blur(18px);
}
.cart-items,
.shipping-form,
.payment-form { padding: clamp(18px, 2.5vw, 32px); }
.order-summary {
    position: sticky;
    top: 118px;
    padding: clamp(20px, 2.5vw, 32px);
    color: #fff;
}
.order-summary h3,
.checkout-panel-title {
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-bottom: 0;
    color: #fff;
}
.cart-table th {
    padding: 0 1rem 0.4rem;
    color: var(--checkout-muted);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    border: none;
}
.cart-table td {
    padding: 1rem;
    vertical-align: middle;
    border-top: 1px solid var(--checkout-line);
    border-bottom: 1px solid var(--checkout-line);
    background: rgba(5,6,7,0.5);
}
.cart-table td:first-child { border-left: 1px solid var(--checkout-line); border-radius: 8px 0 0 8px; }
.cart-table td:last-child { border-right: 1px solid var(--checkout-line); border-radius: 0 8px 8px 0; text-align: center; }
.cart-item-info { display: flex; align-items: center; gap: 1.1rem; }
.cart-item-img {
    width: 82px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.16);
    background: #202228;
}
.cart-item-info h4 { color: #fff; font-weight: 800; margin-bottom: 6px; line-height: 1.25; }
.cart-item-info span { color: #a7adb7 !important; }
.cart-item-info strong { color: #fff; }
.qty-controls {
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.07);
}
.qty-val { padding: 0; color: #fff; font-size: 0.86rem; font-weight: 800; }
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 1rem;
    color: #c0c5ce;
}
.summary-row span:last-child { color: #fff; font-weight: 800; text-align: right; }
.summary-row.total {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--checkout-line);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}
.summary-row.total span:last-child {
    color: var(--checkout-gold);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.checkout-primary-btn {
    width: 100%;
    margin-top: 1.8rem;
    padding: 16px 22px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f1df, var(--checkout-gold)) !important;
    color: #050607 !important;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(215,181,109,0.22);
}
.checkout-primary-btn:hover {
    background: linear-gradient(135deg, #fff8db, #dcb65f) !important;
    transform: translateY(-2px);
}
.checkout-secondary-link {
    display: block;
    margin-top: 16px;
    color: #b8bec8;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}
.checkout-secondary-link:hover { color: #fff; }
.checkout-empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    border: 1px solid var(--checkout-line);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}
.checkout-empty-state i {
    width: 72px;
    height: 72px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--checkout-gold);
    border: 1px solid rgba(215,181,109,0.45);
    border-radius: 50%;
    font-size: 1.8rem;
}
.checkout-empty-state h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.checkout-empty-state p { color: #b8bec8; }
.checkout-shell .form-group label {
    color: #dce0e7;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.checkout-shell .form-control {
    background: rgba(5,6,7,0.58);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    border-radius: 8px;
    padding: 14px 15px;
}
.checkout-shell .form-control[readonly] {
    background: rgba(255,255,255,0.05);
    color: #9da4af;
}
.checkout-shell .form-control:focus {
    border-color: rgba(215,181,109,0.75);
    box-shadow: 0 0 0 3px rgba(215,181,109,0.12);
}
#frete-options h3 {
    color: #fff;
    letter-spacing: 0.08em;
}
#frete-options > div {
    border-radius: 8px !important;
    border-color: var(--checkout-line) !important;
    background: rgba(5,6,7,0.64) !important;
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 1.5rem;
}
.payment-method-card {
    position: relative;
    min-height: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.6rem 1rem;
    color: #b3b9c4;
    background: rgba(5,6,7,0.56);
    border: 1px solid var(--checkout-line);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.payment-method-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215,181,109,0.18), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.payment-method-card i,
.payment-method-card span { position: relative; z-index: 1; }
.payment-method-card i {
    color: var(--checkout-gold);
    font-size: 2rem;
}
.payment-method-card span {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.payment-method-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215,181,109,0.5);
}
.payment-method-card:hover::before,
.payment-method-card.selected::before { opacity: 1; }
.payment-method-card.selected {
    color: #fff;
    border-color: var(--checkout-gold);
    background: rgba(215,181,109,0.1);
    box-shadow: inset 0 0 0 1px rgba(215,181,109,0.25), 0 18px 46px rgba(0,0,0,0.22);
}
.payment-info {
    margin-top: 18px;
    margin-bottom: 1.2rem;
    padding: 18px 20px;
    color: #d7dde8;
    background: rgba(24,185,87,0.1);
    border: 1px solid rgba(24,185,87,0.26);
    border-radius: 8px;
    line-height: 1.55;
}
.payment-info i { color: var(--acena-green); margin-right: 8px; }
#btn-pagar {
    width: 100%;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .checkout-shell { padding: 28px 16px 44px; }
    .checkout-grid { grid-template-columns: 1fr; gap: 18px; }
    .order-summary { position: relative; top: auto; }
    .payment-methods { grid-template-columns: 1fr; }
    .checkout-steps { grid-template-columns: 1fr; }
    .checkout-steps span + span { border-left: none; border-top: 1px solid var(--checkout-line); }
    .cart-table thead { display: none; }
    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td { display: block; width: 100%; }
    .cart-table tr {
        margin-bottom: 16px;
        border: 1px solid var(--checkout-line);
        border-radius: 8px;
        background: rgba(5,6,7,0.5);
        overflow: hidden;
    }
    .cart-table td {
        border: none;
        border-radius: 0 !important;
        background: transparent;
        padding: 0.9rem 1rem;
    }
    .cart-table td:last-child { text-align: left; }
}
@media (max-width: 560px) {
    .cart-item-info { align-items: flex-start; }
    .cart-item-img { width: 74px; height: 88px; }
    .checkout-shell form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .checkout-shell .form-group { margin-bottom: 1rem; }
    .checkout-hero h1 { font-size: 2rem; }
}

/* ==========================================
   PERFIL E MEUS PEDIDOS
========================================== */
.orders-container { background: #fff; max-width: 1400px; margin: 0 auto;}
.orders-list { display: flex; flex-direction: column; gap: 1.5rem; }
.order-card { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--card-radius); overflow: hidden; transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.order-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.06); }
.order-header { background: #f9f9f9; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
.order-id { font-weight: 800; color: #000; font-size: 1.1rem; margin-right: 15px; }
.order-date { color: #666; font-size: 0.9rem; }
.order-status { padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-pendente { background: #fffbeb; color: #b45309; border: 1px solid #fcd34d; }
.status-pago { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.status-cancelado { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }
.order-body { padding: 1.5rem; }
.order-info { display: flex; justify-content: space-between; margin-bottom: 1rem; border-bottom: 1px dashed #eaeaea; padding-bottom: 1rem; color: #444; }
.order-items-preview { font-size: 0.9rem; color: #555; }
.item-row { margin-bottom: 5px; display: flex; align-items: center; }
.item-row::before { content: "•"; color: #ccc; margin-right: 8px; }
.order-actions { padding: 1rem 1.5rem; background: #fcfcfc; border-top: 1px solid var(--border-color); display: flex; justify-content: flex-end; gap: 10px; }
@media (max-width: 768px) { .order-header { flex-direction: column; align-items: flex-start; gap: 10px; } .order-status { align-self: flex-start; } .order-info { flex-direction: column; gap: 5px; } }

/* ==========================================
   PAGINAÇÃO GERAL
========================================== */
.page-header { padding: 2rem 5%; border-bottom: 1px solid var(--border-color); margin-bottom: 2rem; background: #fafafa; }
.page-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #000; }
.filters-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; color: #666; font-size: 0.9rem; }
.sort-select { background-color: #fff; color: #333; border: 1px solid #ccc; padding: 8px 15px; border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; outline: none; }
.pagination-wrapper { display: flex; justify-content: center; margin-top: 30px; }
.pagination { display: flex; gap: 5px; }
.page-link { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; background-color: #fff; border: 1px solid #ddd; color: #333; font-weight: 500; border-radius: 4px; transition: 0.2s; }
.page-link:hover { background-color: #f5f5f5; border-color: #ccc; }
.page-link.active { background-color: var(--accent-color); color: #fff; border-color: var(--accent-color); font-weight: 700; }

/* ==========================================
   FOOTER
========================================== */
.main-footer { background-color: #000; border-top: 1px solid #222; margin-top: auto; font-family: var(--font-body); }
.footer-benefits { display: flex; justify-content: space-around; padding: 2rem 1rem; border-bottom: 1px solid #222; background: #f5f5f5; flex-wrap: wrap; gap: 1.5rem; text-align: center; color: #000; }
.benefit-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.benefit-item i { font-size: 2rem; color: #000; margin-bottom: 5px; }
.benefit-text strong { display: block; font-size: 0.9rem; text-transform: uppercase; }
.benefit-text span { font-size: 0.8rem; color: #555; }
.footer-links-container { padding: 0; }
.footer-accordion { border-bottom: 1px solid #222; }
.footer-accordion summary { padding: 1.5rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 1rem; color: #ccc; font-weight: 500; }
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary:hover { color: #fff; background: #111; }
.footer-accordion summary i { transition: transform 0.3s ease; font-size: 0.8rem; }
.footer-accordion[open] summary i { transform: rotate(180deg); }
.footer-accordion ul { padding: 0 1.5rem 1.5rem 1.5rem; background-color: #080808; }
.footer-accordion ul li { margin-bottom: 0.8rem; }
.footer-accordion ul li a { color: #888; font-size: 0.9rem; text-decoration: none; display: block; padding: 5px 0; }
.footer-accordion ul li a:hover { color: #fff; padding-left: 5px; }
.social-links-list i { width: 20px; margin-right: 10px; text-align: center; }
.footer-bottom { padding: 2rem; text-align: center; background-color: #000; }
.copyright { color: #555; font-size: 0.8rem; line-height: 1.5; }
.payment-icons-footer { font-size: 2.2rem; margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 20px; align-items: center; }
.payment-icons-footer i { transition: transform 0.3s ease, filter 0.3s ease; cursor: pointer; background: #fff; padding: 2px 5px; border-radius: 4px; line-height: 1; }
.payment-icons-footer i:hover { transform: translateY(-5px); filter: brightness(1.1); }
.payment-icons-footer .fa-cc-visa { color: #1a1f71; }
.payment-icons-footer .fa-cc-mastercard { color: #eb001b; }
.payment-icons-footer .fa-cc-amex { color: #006fcf; }
.payment-icons-footer .fa-barcode { color: #333; }
.payment-icons-footer .fa-qrcode { color: #32BCAD; }
@media (min-width: 900px) {
    .footer-links-container { display: flex; justify-content: space-around; padding: 3rem 0; align-items: flex-start; }
    .footer-accordion { border-bottom: none; }
    .footer-accordion summary { pointer-events: none; padding: 0 0 1.5rem 0; color: #fff; text-transform: uppercase; font-weight: bold; }
    .footer-accordion summary i { display: none; }
    .footer-accordion ul { padding: 0; background: transparent; }
    .footer-benefits { flex-direction: row; justify-content: center; gap: 4rem; }
    .benefit-item { flex-direction: row; text-align: left; }
}

/* OUTROS BOTÕES / NAVEGAÇÃO */
.acena-whatsapp-btn { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; transition: transform 0.3s; }
.acena-whatsapp-btn:hover { transform: scale(1.1); }
