/* Reset e configurações base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; margin: 0; padding: 0; }

/* =========================================
   CONFIGURAÇÃO GLOBAL (DARK MODE + TIPOGRAFIA)
   ========================================= */
body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.7; 
    color: var(--text-primary); 
    background: var(--gradient-secondary);
    overflow-x: hidden; 
    font-weight: 400; 
    letter-spacing: 0.3px; 
    width: 100%; 
    margin: 0; 
    padding: 0;
    position: relative;
    min-height: 100vh;
}

/* Textura de "Ruído" (Grain) aplicada ao fundo */
body::before {
    content: '';
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23DAA520" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23DAA520" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23DAA520" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23DAA520" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23DAA520" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

#app { width: 100%; margin: 0; padding: 0; overflow-x: hidden; }

/* Variáveis CSS - PALETA DARK */
:root {
    --primary-color: #ffffff; 
    --primary-light: #e0e0e0;
    --primary-dark: #000000;
    --secondary-color: #ffffff;
    --accent-color: #D4AF37; 
    --accent-light: #F8F5F0;
    --text-primary: #FFFFFF; 
    --text-secondary: #cccccc;
    --text-light: #aaaaaa;
    --background-primary: #0f0f0f;
    --background-secondary: #151515;
    --background-dark: #000000;
    --white: #FFFFFF;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --gradient-secondary: linear-gradient(135deg, #444444bb 0%, #444444c0 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.5);
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilitários */
.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Botões: Poppins Bold */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border: none; border-radius: var(--border-radius); font-weight: 600; text-decoration: none; cursor: pointer; transition: var(--transition); font-size: 16px; line-height: 1.5; min-height: 56px; font-family: 'Poppins', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent); transition: var(--transition); }
.btn:hover::before { left: 100%; }

/* Botão Primário Transparente */
.btn-primary { 
    background: transparent; 
    color: var(--white); 
    border: 1px solid var(--white); 
    box-shadow: none;
}
.btn-primary:hover { 
    background: var(--white); 
    color: var(--black); 
    transform: translateY(-3px); 
    box-shadow: var(--shadow-lg); 
}

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Loading Screen */
.loading-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--black), #1a1a1a); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.5s ease, visibility 0.5s ease; }
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-content { text-align: center; color: var(--white); }
.loading-logo { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; animation: pulse 2s infinite; }
.loading-spinner { width: 50px; height: 50px; border: 3px solid rgba(255, 255, 255, 0.3); border-top: 3px solid var(--white); border-radius: 50%; animation: spin 1s linear infinite; margin: 20px auto; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(15, 15, 15, 0.3); backdrop-filter: blur(20px); z-index: 1000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-sm); transform: translateY(0); }
.header-scrolled { background: rgba(18, 18, 18, 0.8); box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.header.header-hidden { transform: translateY(-100%); opacity: 0; }
.header.header-visible { transform: translateY(0); opacity: 1; animation: slideInFromTop 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes slideInFromTop { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; min-height: 70px; }

/* Navegação */
.desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
.desktop-nav a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 1.15rem; opacity: 0.9; transition: var(--transition); position: relative; font-family: 'Poppins', sans-serif; }
.desktop-nav a:hover { opacity: 1; color: #cccccc; }
.desktop-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--white); transition: var(--transition); }
.desktop-nav a:hover::after { width: 100%; }

/* Social Icons no Header */
.header-socials {
    display: none; 
    align-items: center;
    gap: 20px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-socials a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.8;
}

.header-socials a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Logo Imagem */
.logo { display: block; padding: 5px 0; text-decoration: none; }
.logo img { height: 55px; width: auto; display: block; object-fit: contain; }

/* Mobile Menu */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(10px); z-index: 999; display: flex; align-items: center; justify-content: center; }
.mobile-menu { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem 2rem; max-width: 90%; width: 400px; max-height: 80vh; overflow-y: auto; position: relative; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-menu-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 600; }
.mobile-menu .close-btn { background: none; border: none; font-size: 1.8rem; color: var(--white); cursor: pointer; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.mobile-menu .close-btn:hover { transform: rotate(90deg); color: #ccc; }
.mobile-nav { text-align: center; margin-bottom: 2rem; }
.mobile-nav a { display: block; padding: 1rem; color: var(--white); text-decoration: none; font-weight: 500; font-size: 1.1rem; transition: var(--transition); border-radius: 10px; margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* Hero Section */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: transparent; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; filter: brightness(0.6) contrast(1.1); }
.hero-video { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero-content { text-align: center; color: var(--white); z-index: 2; max-width: 1200px; width: 100%; padding: 0 20px; position: relative; margin: 0 auto; }

/* Hero Text */
.hero-text { background: transparent; border: none; box-shadow: none; backdrop-filter: none; padding: 25px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 5rem); margin-bottom: 1rem; line-height: 1.1; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); letter-spacing: -0.5px; color: var(--white); white-space: normal; }
@media (min-width: 1024px) {
    .hero-title { white-space: nowrap; }
    .hero-subtitle { white-space: nowrap; }
}
.hero-subtitle { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: clamp(1rem, 2vw, 1.5rem); margin-bottom: 2rem; color: rgba(255,255,255,0.95); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); line-height: 1.4; }
.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Sections */
.section { padding: 70px 0; position: relative; }
.section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
.section-header { text-align: center; margin-bottom: 50px; position: relative; }
.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; color: var(--white); margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; position: relative; letter-spacing: 0.4px; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--white); border-radius: 2px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25); }
.section-subtitle { font-size: 1.35rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.6; font-weight: 300; font-family: 'Poppins', sans-serif; }
p { font-size: 1.125rem; line-height: 1.8; color: var(--text-secondary); font-family: 'Poppins', sans-serif; }

/* Videos Section */
.videos-section { padding: 5rem 0; background: transparent; }
.media-gallery-grid { display: grid; gap: 20px; margin-top: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
    .media-gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; grid-auto-flow: dense; }
    .media-card.portrait { grid-row: span 2; }
    .media-card.landscape { grid-row: span 1; }
    .media-card.tall { grid-row: span 4; }
}
@media (min-width: 600px) and (max-width: 1023px) {
    .media-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
.media-card { background: #1a1a1a; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.media-wrapper { position: relative; width: 100%; height: 100%; overflow: hidden; background: #000; flex: 1; }
.media-wrapper video, .media-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; pointer-events: none; opacity: 0.95; }
.media-card:hover .media-wrapper video, .media-card:hover .media-wrapper img { transform: scale(1.05); opacity: 1; }

/* Products Section */
.products-section { background: transparent; position: relative; padding-bottom: 60px; }
.products-section::before { display: none; }
.products-section .section-title { color: var(--white); }
.products-section .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.products-swiper { display: block; padding: 20px 10px 60px 10px; overflow: hidden; width: 100%; margin: 0 auto; position: relative; z-index: 2; }
.products-swiper .swiper-wrapper { display: flex; align-items: stretch; }
.products-swiper .swiper-slide { height: auto; display: flex; flex-direction: column; }
.swiper-pagination { position: absolute; bottom: 10px !important; width: 100%; text-align: center; }
.swiper-pagination-bullet { background: #ffffff; opacity: 0.4; width: 10px; height: 10px; margin: 0 6px !important; transition: all 0.3s ease; }
.swiper-pagination-bullet-active { background: #ffffff; opacity: 1; transform: scale(1.2); }
.product-card { background: transparent; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: var(--transition-slow); cursor: pointer; position: relative; border: 1px solid rgba(255, 255, 255, 0.1); aspect-ratio: 3 / 4; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); border-color: var(--accent-color); }
.product-image { position: relative; width: 100%; height: 100%; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge { position: absolute; top: 15px; left: 15px; background: var(--white); color: var(--black); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; z-index: 5; }

/* Lojistas Section */
/* ATUALIZADO: Adicionado Padding */
.lojistas {
    background: transparent;
    padding-top: 10px;
    padding-bottom: 30px;
}

.lojistas-content { display: grid; gap: 40px; align-items: start; }
.lojistas-text { text-align: center; }
.lojistas-features { display: grid; grid-template-columns: 1fr; gap: 30px; margin: 40px auto; max-width: 600px; }
.feature { text-align: center; padding: 30px 20px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius); box-shadow: var(--shadow); transition: var(--transition); }
.feature:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); border-color: var(--white); }
.feature h3 { color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 500; }
.feature p { color: var(--text-secondary); font-weight: 300; }
.feature-icon { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.lojistas-visual .visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.visual-item { aspect-ratio: 1; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1); }
.visual-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: 0.3s; }
.visual-item:hover img { opacity: 1; }
.lojistas-stats { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.lojistas-stats .stat { display: flex; flex-direction: column; align-items: center; }
.lojistas-stats .stat-number { font-weight: 700; color: var(--white); }
.lojistas-stats .stat-label { color: var(--text-secondary); font-weight: 300; }

/* About & Contact & Map */
/* NOVO: Espaçamento extra para a seção About */
.about {
    padding-top: 30px; /* Distância aumentada significativamente */
    padding-bottom: 60px;
}

.about-content { display: grid; gap: 40px; align-items: start; } 

.about-text { text-align: center; color: var(--text-secondary); }
.about-text h2 { color: var(--white); }

/* NOVA ESTRUTURA DO HORÁRIO (LIMPO, SEM CARD) */
.clean-schedule {
    text-align: center;
    margin-top: 30px;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.schedule-header i {
    color: var(--white);
    font-size: 1.2rem;
}

.schedule-header h4 {
    color: var(--white);
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0;
}

.clean-schedule p {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

/* Estilo do Mapa */
.about-map {
    width: 100%;
    height: 350px; /* Altura inicial (mobile) */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.about-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1); /* Suaviza o mapa para combinar com tema dark */
}

.contact-simple { display: flex; gap: 14px; justify-content: center; align-items: center; margin-bottom: 22px; flex-wrap: wrap; }
.btn-cta { padding: 14px 18px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.contact-form { background: linear-gradient(145deg, #1a1a1a 0%, #222 100%); padding: 50px 45px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--white) 0%, #999 50%, var(--white) 100%); }
.contact-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 10002; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.contact-modal.show { opacity: 1; pointer-events: auto; }
.contact-modal .contact-form { width: 90%; max-width: 500px; margin: 0; }
.modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }
.form-group { margin-bottom: 32px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 18px 24px; border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 12px; font-size: 16px; font-family: 'Poppins', sans-serif; transition: all 0.3s; background: #0f0f0f; color: var(--white); }
.form-input:focus { outline: none; border-color: var(--white); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.5); }

/* Footer */
.footer { background: #181818; color: var(--white); padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); font-weight: 300; }
.footer-content { display: grid; gap: 40px; margin-bottom: 40px; }
.footer h3, .footer h4 { color: var(--white); font-weight: 500; }
.footer ul li a { color: rgba(255,255,255,0.7); }
.footer ul li a:hover { color: var(--white); }
.footer-social a { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); font-weight: 300; }

/* Notification */
.notification { position: fixed; top: 100px; right: 20px; background: #1a1a1a; border-radius: var(--border-radius); box-shadow: var(--shadow-xl); padding: 20px; max-width: 400px; z-index: 10000; display: flex; align-items: center; gap: 15px; border-left: 4px solid var(--white); animation: slideInRight 0.3s ease; color: var(--white); font-family: 'Poppins', sans-serif; }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.notification-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; margin-left: auto; color: var(--white); }

/* Product Modal Overlay */
.floating-catalog-button { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--white); color: var(--black); box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.2); z-index: 10001; transition: var(--transition); text-decoration: none; }
.floating-catalog-button:hover { transform: translateY(-2px) scale(1.03); background: transparent; color: var(--white); border-color: var(--white); }
@media (max-width: 600px) {
    .floating-catalog-button { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
}
.product-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 10001; }
.product-modal-content { background: #1a1a1a; border-radius: var(--border-radius); width: 90%; max-width: 500px; overflow: hidden; position: relative; animation: scaleIn 0.3s ease; }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.product-modal-close-btn { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; border: none; cursor: pointer; z-index: 10; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--white); }
.product-modal-slider-container { width: 100%; }
.product-modal-swiper { width: 100%; height: 65vh; }
.product-modal-swiper img { width: 100%; height: 100%; object-fit: contain; background-color: #000; }

.product-modal-swiper .swiper-button-prev, .product-modal-swiper .swiper-button-next { color: rgba(80, 80, 80, 0.8); background: transparent; box-shadow: none; width: 50px; height: 50px; border-radius: 0; transition: all 0.3s ease; opacity: 1; display: flex; align-items: center; justify-content: center; top: 50%; transform: translateY(-50%); }
.product-modal-swiper .swiper-button-prev { left: 0; }
.product-modal-swiper .swiper-button-next { right: 0; }
.product-modal-swiper .swiper-button-prev:hover, .product-modal-swiper .swiper-button-next:hover { background: transparent; color: #ffffff; transform: translateY(-50%) scale(1.2); }
.product-modal-swiper .swiper-button-prev::after, .product-modal-swiper .swiper-button-next::after { font-size: 2rem; font-weight: 300; }
.shortcuts-trigger-btn { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); padding: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.products-swiper .swiper-button-prev, .products-swiper .swiper-button-next { color: #ffffff; background: transparent; box-shadow: none; width: 50px; height: 50px; border-radius: 0; transition: all 0.3s ease; opacity: 1; display: flex; align-items: center; justify-content: center; top: 50%; transform: translateY(-50%); }
.products-swiper .swiper-button-prev { left: 0; }
.products-swiper .swiper-button-next { right: 0; }
.products-swiper .swiper-button-prev:hover, .products-swiper .swiper-button-next:hover { color: var(--white); transform: translateY(-50%) scale(1.15); }
.products-swiper .swiper-button-prev::after, .products-swiper .swiper-button-next::after { font-size: 1.8rem; font-weight: 300; }
.shortcuts-trigger-btn { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); padding: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Responsividade e Mobile Fix */
@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .desktop-nav { display: none; }
    .header-socials { display: none; }
    .header-actions { display: flex; gap: 1rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .products-swiper { padding-bottom: 40px; }
    .product-card { width: 100%; }
    .lojistas-content, .about-content, .footer-content { grid-template-columns: 1fr; text-align: center; }
    .lojistas-text, .about-text { text-align: center; }
    .lojistas-features { grid-template-columns: 1fr; }
    .lojistas-actions { flex-direction: column; }
    .contact-list { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    
    .product-modal-content {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
    .product-modal-swiper { height: auto; background: transparent; }
    .product-modal-swiper img { border-radius: 8px; background: transparent; }
    .product-modal-close-btn { background: rgba(0, 0, 0, 0.5); top: -50px; right: 10px; color: #fff; }
    
    .social-icon-large {
        font-size: 3.5rem;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .container { max-width: 1200px; padding: 0 40px; }
    .desktop-nav { display: flex; }
    .header-socials { display: flex; }
    .mobile-menu-overlay, .shortcuts-trigger-btn { display: none; }
    .hero-cta { flex-direction: row; }
    .lojistas-content, .about-content { grid-template-columns: 1fr 1fr; text-align: left; gap: 60px; }
    .lojistas-text, .about-text { text-align: left; }
    
    /* Garante que o mapa tenha altura total no desktop */
    .about-map { height: 100%; min-height: 450px; }
    
    .footer-content { grid-template-columns: repeat(3, 1fr); }
    .lojistas-features { grid-template-columns: repeat(2, 1fr); }
    .lojistas-features .feature:last-child { grid-column: span 2; max-width: 300px; margin: 0 auto; width: 100%; }
    .lojistas-actions { flex-direction: row; }
}

/* =========================================
   SOCIAL CARD
   ========================================= */
.social-card {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    box-shadow: none;
    transform: none;
}

.social-card:hover {
    box-shadow: none;
    transform: none;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.social-icon-large {
    font-size: 4rem; 
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon-large:hover { transform: scale(1.2); }
.social-icon-large.whatsapp:hover { color: #25D366; filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.5)); }
.social-icon-large.instagram:hover { color: #E1306C; filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.5)); }

.social-buy-button {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
}
