/* ==========================================================================
   style.css - Estilo Principal para promotodahora.com.br
   ========================================================================== */

/* Importação da Fonte Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variáveis de Cor --- */
:root {
    --primary: #00a1fc;
    --primary-dark: #0077be;
    --secondary: #6c757d;
    --success: #28a745;
    --background-light: #f4f6f9;
    --card-bg: #ffffff;
    --text-dark: #1e1e2f;
    --text-body: #3a3a4a;
    --text-muted: #6b6b7b;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.03);
    --shadow-hover: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.02);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset e Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-light);
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Utilitários de Espaçamento (UMA ÚNICA VEZ) --- */
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* --- Cores de Fundo --- */
.gray-bg { background-color: var(--background-light); }
.white-bg { background-color: var(--card-bg); }

/* --- Tipografia --- */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.section-tittle {
    margin-bottom: 40px;
}
.section-tittle h1, .section-tittle h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
.section-tittle h1:after, .section-tittle h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.section-tittle.text-center h1:after,
.section-tittle.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Header --- */
.header-area {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}
.header-top {
    background: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-info-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.header-info-text i {
    color: var(--primary);
    margin-right: 5px;
}
.header-social {
    display: flex;
    gap: 15px;
}
.header-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.2s;
}
.header-social a:hover {
    color: var(--primary);
}
.header-mid {
    padding: 15px 0;
}

/* ===== CONTAINER DA MARCA (UMA ÚNICA VEZ) ===== */
.brand-container {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;  /* Espaço entre logo e texto */
    text-decoration: none !important;
    border: none !important;
}

.brand-logo {
    max-height: 65px;  /* ← TAMANHO IDEAL (ajuste aqui) */
    width: auto;
    display: block;
}

.brand-name {
    font-size: 1.5rem;  /* ← TAMANHO IDEAL */
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1e1e2f;  /* Cor escura */
    white-space: nowrap;
    transition: color 0.2s ease;
}

.brand-link:hover .brand-name {
    color: var(--primary);  /* Fica azul ao passar o mouse */
}

/* ===== BANNER ===== */
.banner-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.banner-link:hover {
    transform: scale(1.02);
    color: white;
}
.badge {
    background: #ffd700;
    color: #333;
    padding: 2px 8px;
    border-radius: 50px;
    margin-right: 5px;
    font-size: 0.8rem;
}

/* --- Header Bottom / Menu --- */
.header-bottom {
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border-color);
}
.main-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    position: relative;
}
.main-menu ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 15px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.main-menu ul li.active a,
.main-menu ul li a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    box-shadow: var(--shadow-hover);
    z-index: 100;
}
.main-menu ul li:hover .submenu {
    display: block;
}
.main-menu ul li .submenu li {
    display: block;
}
.main-menu ul li .submenu li a {
    padding: 8px 20px;
    display: block;
    border: none;
}
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 0;
    color: var(--text-dark);
}

/* --- Hero Area --- */
.hero-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-content .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 161, 252, 0.2);
    z-index: -1;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* --- Featured Stores --- */
.featured-stores {
    background: white;
    padding: 60px 0 40px;
}
.store-item {
    display: block;
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.store-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.store-item .store-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.store-item .store-logo img {
    max-height: 45px;
    max-width: 100%;
}
.store-item .store-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* --- Coupon Cards --- */
.coupon-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.coupon-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbfc;
}
.cashback-badge {
    background: #e6f7e6;
    color: #00a650;
    padding: 4px 8px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}
.coupon-header .store-logo {
    max-height: 35px;
    max-width: 100px;
    object-fit: contain;
}
.coupon-body {
    padding: 20px;
    flex-grow: 1;
}
.coupon-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}
.coupon-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.coupon-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}
.expiry {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.expiry i {
    margin-right: 5px;
    color: var(--primary);
}
.coupon-footer {
    padding: 0 20px 20px;
}
/* --- Botões de Cupom (AZUIS) --- */
.btn-coupon {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary);  /* AZUL (#00a1fc) */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 161, 252, 0.3);
}

.btn-coupon .code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.btn-coupon .action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-coupon:hover {
    background: var(--primary-dark);  /* AZUL ESCURO (#0077be) */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 119, 190, 0.4);
}

.btn-coupon:active {
    background: var(--success);  /* VERDE (#28a745) */
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.4);
}

/* Efeito de clique (feedback visual) */
.btn-coupon.copiado {
    background: var(--success) !important;  /* VERDE */
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- How to Use Steps --- */
.how-to-use {
    padding: 60px 0;
    background: white;
}
.step-card {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.step-card:hover {
    box-shadow: var(--shadow-hover);
}
.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon span {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}
.step-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}
.step-card h4 {
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
}

/* --- Newsletter --- */
.newsletter-area {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
}
.btn-newsletter {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-newsletter:hover {
    background: var(--primary-dark);
}
.newsletter-form small {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.newsletter-form small a {
    color: var(--primary);
}

/* --- Filtros (para página de cupons) --- */
.filters-area {
    padding-top: 40px;
}
.filters-wrapper {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.search-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
}
.btn-search {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-search:hover {
    background: var(--primary-dark);
}
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: white;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-load-more {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-load-more:hover {
    background: var(--primary);
    color: white;
}

/* --- View All Button --- */
.view-all {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-all:hover {
    gap: 10px;
}

/* --- Footer --- */
.footer-main {
    background: #1a1a2c;
    color: #a0a0b0;
    margin-top: 3rem;
}
.footer-area {
    padding: 50px 0 30px;
}
.footer-widget {
    margin-bottom: 30px;
}
.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-widget h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-widget ul {
    list-style: none;
    padding: 0;
}
.footer-widget ul li {
    margin-bottom: 10px;
}
.footer-widget ul li a {
    color: #a0a0b0;
    transition: color 0.2s;
}
.footer-widget ul li a:hover {
    color: var(--primary);
}
.footer-about {
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2a2a3c;
    color: #b0b0c0;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
    color: white;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0b0;
}
.contact-info li i {
    color: var(--primary);
    width: 20px;
}
.payment-methods {
    margin-top: 20px;
}
.payment-methods span {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}
.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #a0a0b0;
}
.footer-bottom {
    border-top: 1px solid #2a2a3c;
    padding: 20px 0;
}
.footer-copy p {
    color: #6b6b7b;
    font-size: 0.9rem;
}
.footer-copy a {
    color: #b0b0c0;
}
.footer-copy a:hover {
    color: var(--primary);
}

/* --- Animações --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.pulse-logo {
    animation: pulse 1.5s infinite;
}
.preloader-img img {
    animation: pulse 1.5s infinite;
}

/* --- Responsivo --- */
@media (max-width: 992px) {
    .brand-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .main-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        padding: 20px;
        box-shadow: var(--shadow-hover);
        z-index: 1000;
    }
    .main-menu ul.show {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .main-menu ul li .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    .main-menu ul li:hover .submenu {
        display: none;
    }
    .main-menu ul li.active .submenu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    
    .col-md-4.col-8 {
        width: 100%;
    }
    .brand-container {
        justify-content: flex-start;
    }
    .brand-name {
        font-size: 1.3rem;
    }
    .brand-logo {
        max-height: 40px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    .btn-newsletter {
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.1rem;
    }
    .brand-logo {
        max-height: 35px;
    }
    .brand-link {
        gap: 5px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Link que cobre o slide inteiro */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

/* Imagem - SEM filtros escuros */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Cobre todo o espaço */
    object-position: center;
    z-index: 1;
}

/* Conteúdo do slide */
.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 80%;
    padding: 15px 20px;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    border-radius: 8px;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.slide-link:hover .slide-content {
    background: linear-gradient(to right, rgba(0,161,252,0.8), rgba(0,119,190,0.6));
    transform: translateY(-2px);
}

.slide-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 600;
}

.slide-content p {
    color: white;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0;
}

/* Setas de navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.7);
    transform: translateY(-50%) scale(1.1);
    color: #333;
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

/* Indicadores (bolinhas) */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.dot:hover {
    background: rgba(255,255,255,0.9);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-slider {
        height: 250px;
    }
    
    .slide-content {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
    }
    
    .slide-content h3 {
        font-size: 1.1rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 200px;
    }
    
    .slide-content h3 {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
}

/* ===== NOVO LAYOUT LOJAS EM DESTAQUE ===== */

/* Grid para desktop */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.store-item {
    list-style: none;
}

.store-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.store-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.store-link .store-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.store-link .store-logo img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
}

.store-link .store-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Carrossel para mobile */
.mobile-carousel {
    display: none;
    position: relative;
    padding: 0 40px;
    margin: 0 -10px;
}

.carousel-container {
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
}

.carousel-track .store-item {
    flex: 0 0 calc(50% - 7.5px);
    min-width: calc(50% - 7.5px);
}

/* Setas do carrossel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 161, 252, 0.3);
}

.carousel-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Dots do carrossel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 1200px) {
    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stores-grid {
        display: none;
    }
    
    .mobile-carousel {
        display: block;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-carousel {
        padding: 0 35px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
}

/* ===== MENU MOBILE ===== */
.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 10px 0;
    text-align: right;
}

.mobile-menu i {
    transition: all 0.3s;
}

.mobile-menu.active i {
    transform: rotate(90deg);
}

/* Estilo para o menu quando aberto */
.main-menu ul.show {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    margin: 0;
    border-top: 1px solid #eee;
}

.main-menu ul.show li {
    margin: 10px 0;
    width: 100%;
}

.main-menu ul.show li a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.main-menu ul.show li a:hover {
    background: #f5f5f5;
    padding-left: 20px;
}

/* Responsivo: esconder menu normal e mostrar hamburguer */
@media (max-width: 768px) {
    .main-menu ul {
        display: none !important;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-bottom {
        position: relative;
    }
}