/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --danger-color: #ff4444;
    --white: #ffffff;
    --neon-green: #4CAF50;
    --pink-border: #ff69b4;
    --blue-border: #4169e1;
    --orange-border: #ff8c00;
    --green-border: #00ff00;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* Barra Superior */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.top-bar strong {
    color: var(--neon-green);
}

/* Header Principal */
.main-header {
    background-color: #000; /* preto */
    border-bottom: 1px solid #222; /* borda mais escura */
    padding: 20px 0;
}

/* Deixa as letras e ícones do header brancos */
.main-header .user-menu a,
.main-header .user-menu a span,
.main-header .user-menu a i {
    color: #fff !important;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    border: 3px solid var(--neon-green);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Barra de Busca */
.search-bar {
    flex: 1;
    max-width: 500px;
}

.search-bar form {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
}

.search-bar button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #2dd60f;
}

/* Menu de Usuário */
.user-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.user-link, .cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    position: relative;
}

.user-link i, .cart-link i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Menu de Navegação */
.main-nav {
    background-color: var(--secondary-color);
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-menu li a {
    display: block;
    color: var(--white);
    padding: 15px 25px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.nav-menu li a:hover {
    background-color: #333;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: left 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.mobile-nav-menu li a:hover {
    background-color: var(--light-gray);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Banner Principal */
.hero-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

/* Banner Rotativo - Slider */
.hero-banner-slider {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Indicadores do Banner */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.banner-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Botões de Navegação do Banner */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.banner-nav:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
    background-color: var(--light-gray);
    padding: 30px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-item i {
    font-size: 32px;
    color: var(--primary-color);
}

/* Seções de Produtos - COMENTADO - Estilos movidos para products-style.css */
/* 
.products-section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
*/

/* Card de Produto - COMENTADO - Estilos movidos para products-style.css */
/*
.product-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding-bottom: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000000;
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wishlist-btn:hover {
    background-color: var(--light-gray);
}

.wishlist-btn i {
    font-size: 18px;
    color: #999999;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-prices {
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.sale-price {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
}

.installment {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.pix-price {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.buy-btn {
    width: 100%;
    background-color: var(--neon-green);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.buy-btn:hover {
    background-color: #2dd60f;
}
*/

/* Newsletter */
.newsletter-section {
    background-color: #000000;
    color: var(--white);
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    min-width: 300px;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2dd60f;
}

/* Footer */
.main-footer {
    background-color: var(--light-gray);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 32px;
    margin-top: 10px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: #666;
}

/* Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    bottom: 200px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background-color: #000000;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0;
}

.back-to-top:hover {
    background-color: #333333;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--border-color);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}



/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination span.current {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    font-weight: bold;
}

.icone-pix {
    width: 20px;   /* tamanho pequeno */
    height: auto;
    vertical-align: middle; /* alinha com o texto */
    margin: 0 4px; /* pequeno espaçamento dos lados */
}

/* Estilos para a navegação com dropdown */
.main-nav {
    background-color: #000;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    flex: 1;
}

.nav-menu > li > a {
    display: block;
    padding: 18px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    background-color: #1a1a1a;
}

/* Dropdown container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    z-index: 999;
    border-radius: 6px;
    overflow: hidden;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Links dentro do dropdown */
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #000 !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* Seta indicadora de dropdown */
.nav-menu > li.has-dropdown > a::after {
    content: '▼';
    font-size: 6px;
    margin-left: 5px;
    opacity: 0.8;
    vertical-align: middle;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .nav-menu > li:hover .dropdown-menu {
        display: block;
    }
}



/* User Menu Container */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-left: auto;
    padding-right: 20px;
}

/* User Menu Items */
.user-menu-item {
    position: relative;
}

/* Ícone do menu hambúrguer */
.fa-bars {
    font-size: 28px !important;
    color: #fff !important;
    filter: none !important;
    background: transparent !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #fff !important;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}

.user-link:hover {
    opacity: 0.8;
}

.user-link i {
    font-size: 18px;
}

.user-link .fa-bars {
    font-size: 28px !important;
}

/* Arrow Up */
.arrow-up {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
}

.arrow-up.right-aligned {
    left: 30%;
}

/* CENTRAL DE ATENDIMENTO DROPDOWN */
.atendimento-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 0;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.atendimento-container:hover .arrow-up,
.atendimento-container:hover .atendimento-dropdown {
    opacity: 1;
    visibility: visible;
}

.atendimento-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atendimento-dropdown li {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 11px;
    line-height: 1.4;
    color: #000;
}

.atendimento-dropdown li:last-of-type {
    border-bottom: 1px solid #e5e5e5;
}

.atendimento-dropdown li i {
    margin-right: 8px;
    color: #000;
    font-size: 14px;
    vertical-align: middle;
}

.atendimento-dropdown li span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.horario-atendimento {
    font-weight: 500;
}

.horario-atendimento span {
    font-size: 11px;
    font-weight: 400;
}

.fale-conosco-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: background 0.3s;
    display: block;
}

.fale-conosco-btn:hover {
    background: #222;
}

/* MINHA CONTA DROPDOWN */
.conta-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 8px 0;
    width: 210px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.conta-container:hover .arrow-up,
.conta-container:hover .conta-dropdown {
    opacity: 1;
    visibility: visible;
}

.conta-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conta-dropdown li {
    padding: 0;
    margin: 0;
}

.conta-dropdown li a {
    display: block;
    color: #1a1a1a !important;
    text-decoration: none;
    padding: 12px 15px;
    transition: background 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.conta-dropdown li a:hover {
    background: #f0f0f0;
}



/* User Menu Container */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-left: auto;
    padding-right: 20px;
}

/* User Menu Items */
.user-menu-item {
    position: relative;
}

/* Ícone do menu hambúrguer */
.fa-bars {
    font-size: 32px !important;
    color: #fff !important;
    filter: brightness(1) !important;
    background: transparent !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #fff !important;
}

/* Wrapper do ícone hambúrguer */
.menu-toggle-link {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle-link .fa-bars {
    font-size: 32px !important;
    color: #fff !important;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}

.user-link:hover {
    opacity: 0.8;
}

.user-link i {
    font-size: 18px;
}

.user-link .fa-bars {
    font-size: 32px !important;
}

/* Arrow Up */
.arrow-up {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
}

.arrow-up.right-aligned {
    left: 30%;
}

/* CENTRAL DE ATENDIMENTO DROPDOWN */
.atendimento-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 0;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.atendimento-container:hover .arrow-up,
.atendimento-container:hover .atendimento-dropdown {
    opacity: 1;
    visibility: visible;
}

.atendimento-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atendimento-dropdown li {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 11px;
    line-height: 1.4;
    color: #000;
}

.atendimento-dropdown li:last-of-type {
    border-bottom: 1px solid #e5e5e5;
}

.atendimento-dropdown li i {
    margin-right: 8px;
    color: #000;
    font-size: 14px;
    vertical-align: middle;
}

.atendimento-dropdown li span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.horario-atendimento {
    font-weight: 500;
}

.horario-atendimento span {
    font-size: 11px;
    font-weight: 400;
}

.fale-conosco-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: background 0.3s;
    display: block;
}

.fale-conosco-btn:hover {
    background: #222;
}

/* MINHA CONTA DROPDOWN */
.conta-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 8px 0;
    width: 210px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.conta-container:hover .arrow-up,
.conta-container:hover .conta-dropdown {
    opacity: 1;
    visibility: visible;
}

.conta-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conta-dropdown li {
    padding: 0;
    margin: 0;
}

.conta-dropdown li a {
    display: block;
    color: #1a1a1a !important;
    text-decoration: none;
    padding: 12px 15px;
    transition: background 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.conta-dropdown li a:hover {
    background: #f0f0f0;
}

/* Botão Minha Conta com fundo preto */
.minha-conta-btn {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #000 !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 12px 15px !important;
}

.minha-conta-btn:hover {
    background: #222 !important;
}

.minha-conta-btn i {
    font-size: 10px;
    margin-left: auto;
}

/* Rastrear Pedido */
.rastrear-pedido {
    padding: 15px;
    background: #f9f9f9;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    border-top: 1px solid #e5e5e5;
}

.rastreio-input {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.rastreio-input input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #000;
    border-radius: 3px;
    font-size: 12px;
    outline: none;
}

.rastreio-input input::placeholder {
    color: #999;
}

.rastreio-input button {
    padding: 8px 12px;
    background: #000;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.rastreio-input button:hover {
    background: #222;
}

.rastreio-input button i {
    color: #fff;
    font-size: 14px;
}

/* Cart Link */
.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    position: relative;
    padding: 10px;
    transition: opacity 0.3s;
}

.cart-link:hover {
    opacity: 0.8;
}

.cart-link i {
    font-size: 24px;
}

.cart-link span {
    font-size: 12px;
    line-height: 1.4;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .user-menu {
        gap: 15px;
    }
    
    .user-link span {
        display: none;
    }
    
    .atendimento-dropdown,
    .conta-dropdown {
        left: auto;
        right: 0;
        transform: none;
    }
    
    /* Menu mobile */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav .nav-menu {
        list-style: none;
        padding: 20px 0;
        margin: 0;
    }
    
    .main-nav .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav .nav-menu li a {
        display: block;
        padding: 15px 20px;
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.3s;
    }
    
    .main-nav .nav-menu li a:hover {
        background: #f5f5f5;
    }
    
    .main-nav .dropdown-menu {
        background: #f9f9f9;
        padding-left: 20px;
    }
    
    .main-nav .dropdown-menu a {
        padding: 12px 20px;
        font-size: 13px;
        font-weight: 400;
    }
    
    /* Overlay do menu mobile */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}





/* ============================================
   TRUST BADGES CAROUSEL - CSS
   ============================================ */

.trust-badges {
    background: #fff;
    padding: 30px 0;
    position: relative;
}

.trust-badges .container {
    position: relative;
    overflow: hidden;
}

/* Desktop - Grid normal */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    transition: transform 0.3s ease;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.badge-item i {
    font-size: 32px;
    color: #4CAF50;
    flex-shrink: 0;
}

.badge-item strong {
    display: block;
    color: #333;
    font-size: 14px;
}

.badge-item small {
    color: #666;
    font-size: 12px;
}

/* Setas de navegação - escondidas no desktop */
.badges-nav {
    display: none;
}

/* ============================================
   MOBILE - CARROSSEL
   ============================================ */
@media (max-width: 768px) {
    .trust-badges .container {
        padding: 0 50px;
    }

    .badges-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .badges-grid::-webkit-scrollbar {
        display: none;
    }

    .badge-item {
        min-width: 280px;
        flex-shrink: 0;
    }

    /* Setas de navegação */
    .badges-nav {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .badges-nav:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .badges-nav i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #333;
        font-size: 18px;
    }

    .badges-nav.prev {
        left: 5px;
    }

    .badges-nav.next {
        right: 5px;
    }

    .badges-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
}

@media (max-width: 480px) {
    .badge-item {
        min-width: 250px;
    }

    .badge-item i {
        font-size: 28px;
    }

    .badge-item strong {
        font-size: 13px;
    }
}
/* COMENTADO - Estilos movidos para products-style.css */
/*
.product-prices-wrapper {
    margin-bottom: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info {
    flex-grow: 1;
}

.buy-btn {
    display: block;
    text-align: center;
    margin: 0 15px 15px 15px;
    width: calc(100% - 30px);
}

.products-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.products-carousel {
    overflow: hidden;
    position: relative;
}

.products-carousel .products-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.products-carousel .product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
    max-width: 280px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 20px;
    color: #333;
}

@media (max-width: 1024px) {
    .products-carousel .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .products-carousel .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .products-carousel-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .products-carousel .product-card {
        flex: 0 0 calc(100% - 20px);
    }
}
*/




/* ============================================
       BANNER PRINCIPAL
       ============================================ */
    .hero-banner {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 16/9;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-color: transparent !important;
        margin: -20px 0 0 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .hero-banner img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .hero-content {
        display: none !important;
    }


/* ============================================
   BANNER ROTATIVO - RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .hero-banner-slider {
        height: 300px;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .banner-nav.prev {
        left: 10px;
    }
    
    .banner-nav.next {
        right: 10px;
    }
    
    .banner-indicators {
        bottom: 10px;
    }
    
    .banner-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-banner-slider {
        height: 200px;
    }
    
    .banner-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

