@charset "UTF-8";

/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GERAIS (PREMIUM DARK & GOLD)
   ========================================================================== */
:root {
    --bg-dark: #0a0a0a;         
    --bg-card: #141414;         
    --bg-glass: rgba(15, 15, 15, 0.85); 
    
    --gold-primary: #d4af37;    
    --gold-light: #f3e5ab;      
    --gold-dark: #aa8529;       
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); 
    
    --text-main: #ffffff;       
    --text-muted: #a0a0a0;      
    --text-black: #121212;      

    --font-heading: 'Cinzel', serif; 
    --font-body: 'Montserrat', sans-serif; 

    --radius-sm: 8px;           
    --radius-md: 16px;          
    --radius-lg: 24px;          
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15); 
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.8);      
    
    --transition-fast: 0.2s ease; 
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-wrap: balance; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================================================
   2. CABEÇALHO PREMIUM
   ========================================================================== */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px; 
}

.header-left {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 20px); 
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 5px; 
}

.menu-toggle:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
}

.logo-img {
    height: clamp(30px, 5vw, 40px); 
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: clamp(16px, 4vw, 22px); 
    letter-spacing: 2px;
    color: var(--text-main);
    white-space: nowrap; 
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.header-center {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-bar-wrapper {
    position: relative;
    width: 100%;
}

.search-bar-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-main);
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
}

.search-bar-wrapper input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
}

.header-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 20px;
    cursor: pointer;
    padding: 5px; 
    transition: var(--transition-fast);
}

.header-icon-btn:hover {
    color: var(--gold-primary);
}

.login-btn-premium {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.login-btn-premium:hover {
    background: var(--gold-gradient);
    color: var(--text-black);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.mobile-search-bar {
    display: none;
    padding: 15px 20px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.mobile-search-bar input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    outline: none;
}

/* ==========================================================================
   3. MENU LATERAL RETRÁTIL
   ========================================================================== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%; 
    width: min(320px, 85vw); 
    height: 100%;
    background: var(--bg-dark);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1010;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.8);
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
}

.close-sidebar {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 5px;
}

.close-sidebar:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-content::-webkit-scrollbar { width: 6px; }
.sidebar-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
.sidebar-content::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 10px; }

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 15px;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    transform: translateX(5px);
}

.sidebar-store-list img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold-primary);
}

.sidebar-social-list i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   4. CARROSSEL HERO (BANNERS PRINCIPAIS) - AJUSTADO PARA MENOS ZOOM
   ========================================================================== */
.hero-carousel-section {
    margin-top: 80px;
    /* Reduzindo a altura no desktop também para dar um formato mais de banner widescreen */
    height: 70dvh; 
    max-height: 650px;
    min-height: 400px;
    position: relative;
    background-color: var(--bg-dark);
}

.swiper {
    width: 100%;
    height: 100%;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center; /* Centraliza a imagem no corte */
}

.swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--gold-primary); opacity: 1; box-shadow: 0 0 10px var(--gold-primary); }
.swiper-button-next, .swiper-button-prev { color: var(--gold-primary); text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

/* ==========================================================================
   5. ACONTECENDO AGORA (STORIES / STATUS)
   ========================================================================== */
.status-section {
    padding: clamp(40px, 5vw, 60px) 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    margin-bottom: clamp(25px, 4vw, 40px);
}

.section-header-centered h3 {
    font-size: clamp(26px, 4vw, 32px);
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.section-header-centered p {
    color: var(--text-muted);
    font-size: clamp(14px, 2vw, 16px);
}

.status-container {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
}

.status-container::-webkit-scrollbar { display: none; }

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    cursor: pointer;
    position: relative;
    scroll-snap-align: start; 
}

.status-item:hover .status-ring {
    transform: scale(1.05);
}

.status-ring {
    width: clamp(70px, 15vw, 80px);
    height: clamp(70px, 15vw, 80px);
    border-radius: 50%;
    padding: 3px;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.status-24h { background: var(--gold-gradient); box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.status-7d { background: linear-gradient(135deg, #e0e0e0, #ffffff, #a0a0a0); }
.status-30d { background: #333333; }

.status-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    object-fit: cover;
    background-color: #000;
}

.status-name {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90px;
}

/* ==========================================================================
   6. DIRETÓRIO DE LOJAS (GRID E FILTROS)
   ========================================================================== */
.directory-section {
    padding: 20px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(12px, 2vw, 14px); 
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 40px;
}

.store-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-dark), 0 0 20px rgba(212, 175, 55, 0.1);
}

.store-card-header {
    height: 120px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.store-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
}

.store-card-logo {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    object-fit: cover;
    background: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.store-card-body {
    padding: 35px 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.store-name {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.store-category {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.btn-gold-outline {
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto; 
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-black);
    border-color: transparent;
}

/* ==========================================================================
   7. INFO E HORÁRIOS DA GALERIA
   ========================================================================== */
.info-section {
    padding: 0 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.info-box {
    padding: clamp(30px, 5vw, 40px);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.info-box h4 {
    font-size: clamp(20px, 3vw, 22px);
    margin-bottom: 15px;
}

.info-box p {
    font-size: 15px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.dark-box { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); }
.dark-box .info-icon { color: var(--gold-primary); }

.gold-box { background: var(--gold-gradient); color: var(--text-black); }

.btn-black-solid {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--gold-primary);
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 15px;
    font-weight: 600;
}

.btn-black-solid:hover { background: #000; color: #fff; }

.status-aberto {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 600;
    color: #4ade80;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   8. RODAPÉ (FOOTER PREMIUM)
   ========================================================================== */
.premium-footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(30px, 5vw, 50px);
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; 
}

.social-links a {
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--text-black);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); padding: 5px 0; display: inline-block; }

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i { color: var(--gold-primary); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   9. RESPONSIVIDADE ESPECÍFICA (MOBILE & TABLET)
   ========================================================================== */
.d-desktop-none { display: none; }

@media (max-width: 992px) {
    .d-mobile-none { display: none; }
    .d-desktop-none { display: block; }
}

@media (max-width: 768px) {
    /* CORREÇÃO DO ZOOM: Reduzimos a altura para a imagem aparecer mais inteira */
    .hero-carousel-section {
        height: 50dvh;  /* Altura menor, formato mais proporcional à foto */
        min-height: 380px; 
    }
    
    .footer-container {
        text-align: center; 
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links { justify-content: center; }
    .footer-contact p { justify-content: center; }
}