@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #d62828bd;
    --color-text: #1a1a1a;
    --color-bg: #ffffff;
    --font-logo: 'Playfair Display', serif;
    --font-main: 'Poppins', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    --header-height: 75px;
    --top-bar-height: 40px;
    --whatsapp-green: #25D366;
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-menu: 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    --color-success: #25D366;;
}

/* ================= RESET GLOBAL ================= */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; list-style: none; text-decoration: none; -webkit-tap-highlight-color: transparent; }

html, body {
    width: 100%; max-width: 100vw; overflow-x: hidden; position: relative;
    font-family: var(--font-main); color: var(--color-text); background: var(--color-bg);
}

/* ================= ANIMAÇÃO DE ENTRADA (PAGE REVEAL) ================= */
.reveal-page { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}
.reveal-page.active { opacity: 1; transform: translateY(0); }

/* Scrollbar Personalizada */
::-webkit-scrollbar {     width: 5px; height: 3px;  }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   HEADER & TOP BAR (DINÂMICO)
   ========================================= */

.header-wrapper { 
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; 
    transition: transform var(--transition); 
}

.top-header-bar {
    height: var(--top-bar-height);
    background: #330a0a; color: #fff; font-size: 0.85rem;
    display: flex; align-items: center;
}
.top-bar-content { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.top-left, .top-right { display: flex; align-items: center; gap: 20px; }
.top-left a, .top-right a { color: #ddd; transition: 0.2s; display: flex; align-items: center; gap: 6px; font-size: 0.8rem; }
.top-left a:hover, .top-right a:hover { color: #fff; }

.site-header {
    height: var(--header-height); width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header-wrapper.scrolled { transform: translateY(calc(var(--top-bar-height) * -1)); }

.header-wrapper.scrolled .site-header { 
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
    border-bottom: none;
}

/* CORES DO HEADER (Texto e Ícones) */
/* No Topo: Branco */
.header-wrapper:not(.scrolled) .logo-text { color: #fff; }
.header-wrapper:not(.scrolled) .desktop-nav a { color: rgba(255,255,255,0.9); }
.header-wrapper:not(.scrolled) .desktop-nav a:hover { color: #fff; }
.header-wrapper:not(.scrolled) .header-icon-btn, 
.header-wrapper:not(.scrolled) .btn-login-icon { color: #fff; }
.header-wrapper:not(.scrolled) .mobile-toggle span { background: #fff; }

/* Rolado: Escuro */
.header-wrapper.scrolled .logo-text { color: #000; }
.header-wrapper.scrolled .desktop-nav a { color: #555; }
.header-wrapper.scrolled .desktop-nav a:hover { color: var(--color-primary); }
.header-wrapper.scrolled .header-icon-btn, 
.header-wrapper.scrolled .btn-login-icon { color: #333; }
.header-wrapper.scrolled .header-icon-btn:hover { background: #f5f5f5; color: var(--color-primary); }
.header-wrapper.scrolled .mobile-toggle span { background: #000; }

/* LAYOUT DO HEADER */
.header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.logo-text { font-family: var(--font-logo); font-size: 1.8rem; font-weight: 700; color: #000; letter-spacing: 0.5px; transition: 0.3s; }
.logo-text span { color: var(--color-primary); font-style: italic; font-weight: bold; }

.desktop-nav { display: flex; gap: 25px; }
.desktop-nav a { font-weight: 500; font-size: 0.95rem; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }

/* ÍCONES E AÇÕES */
/* Importante: header-actions relativo para posicionar dropdowns se estiverem dentro */
.header-actions { display: flex; align-items: center; gap: 10px; position: relative; }

.login-area { position: relative; height: 100%; display: flex; align-items: center; gap: 10px; }
.btn-login-icon, .header-icon-btn { 
    font-size: 1.4rem; cursor: pointer; padding: 10px; transition: 0.2s; 
    background: transparent; border: none; display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
}

/* MENU DE LOGIN (DESKTOP) */
.login-dropdown {
    position: absolute;
    top: 40px;
    right: 11px;
    width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    z-index: 1001;
}
.login-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.login-dropdown a { display: block; padding: 12px 20px; font-size: 0.85rem; color: #333 !important; border-bottom: 1px solid #f9f9f9; transition: 0.2s; }
.login-dropdown a:hover { background: #fff5f5; color: var(--color-primary) !important; padding-left: 25px; }

/* MENU DE NOTIFICAÇÕES (AJUSTADO PARA PC) */
#notifDropdown {
    position: fixed; /* Fixed garante que ele siga o header fixo */
    top: 75px; /* Altura do header */
    right: 80px; /* Alinhado próximo ao ícone do sino (na esquerda dele) */
    width: 210px;
    background: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: 0.3s; z-index: 1100; border: 1px solid #f0f0f0; overflow: hidden;
}
#notifDropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-header { padding: 12px 15px; place-self: center; font-weight: 600; font-size: 0.85rem; border-bottom: 1px solid #eee; }
.dropdown-body { padding: 15px; }
.no-notif { text-align: center; color: #999; font-size: 0.8rem; margin: 0; }

/* MODAL CARRINHO LATERAL */
.side-modal {
    position: fixed; top: 0; right: 0; width: 350px; height: 100vh;
    background: #fff;
    z-index: 1200; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}
.side-modal.active { transform: translateX(0); }
.side-modal-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: #fafafa; }
.side-modal-header h3 { margin: 0; font-family: var(--font-title); font-size: 1.2rem; }
.close-modal-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #666; transition: 0.2s; }
.close-modal-btn:hover { color: var(--color-primary); }
.side-modal-body { flex: 1; padding: 20px; overflow-y: auto; }
.empty-cart-msg { text-align: center; color: #999; margin-top: 50px; font-size: 0.9rem; }
.side-modal-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }
.btn-checkout { width: 100%; padding: 15px; background: #111; color: #fff; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-checkout:hover { background: var(--color-primary); }

.mobile-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; width: 30px; z-index: 1200; }
.mobile-toggle span { width: 100%; height: 2px; border-radius: 2px; transition: 0.3s; }

/* ================= MOBILE SIDEBAR ================= */
.mobile-sidebar {
    position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: #fff;
    z-index: 1100; transform: translateX(-100%); 
    transition: transform var(--transition-menu), opacity 0.3s ease, visibility 0.3s;
    box-shadow: none; display: flex; flex-direction: column;
    opacity: 0; visibility: hidden;
}
.mobile-sidebar.active { transform: translateX(0); box-shadow: 10px 0 40px rgba(0,0,0,0.15); opacity: 1; visibility: visible; }
.sidebar-header { 
    padding: 30px 20px; border-bottom: 1px solid #f8f8f8; 
    display: flex; justify-content: space-between; align-items: center; 
    transform: translateY(-10px); opacity: 0; transition: 0.4s ease 0.1s;
}
.mobile-sidebar.active .sidebar-header { transform: translateY(0); opacity: 1; }
.sidebar-title { font-family: var(--font-logo); font-weight: 700; font-size: 1.4rem; color: var(--color-primary); }
.btn-close { background: none; border: none; font-size: 1.5rem; color: #333; cursor: pointer; transition: 0.3s; }
.btn-close:hover { transform: rotate(90deg); color: var(--color-primary); }
.mobile-menu { padding: 30px 20px; list-style: none; }
.mobile-menu li { margin-bottom: 25px; transform: translateY(20px); opacity: 0; transition: transform 0.5s ease, opacity 0.5s ease; }
.mobile-sidebar.active .mobile-menu li { transform: translateY(0); opacity: 1; }
.mobile-sidebar.active .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-sidebar.active .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-sidebar.active .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-sidebar.active .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu a { display: flex; align-items: center; gap: 15px; font-size: 1.15rem; color: #333; font-weight: 500; transition: 0.3s; }
.mobile-menu a i { color: var(--color-primary); font-size: 1rem; width: 20px; text-align: center; }
.mobile-menu a:hover { color: var(--color-primary); padding-left: 8px; }

.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.4); z-index: 1050; display: block; opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px; background: var(--whatsapp-green); color: #fff;
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 999;
    transition: 0.3s; cursor: pointer;
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.1); }

/* ================= HERO SLIDER ================= */
.hero-slider { height: 600px; width: 100%; position: relative; background: #222; overflow: hidden; margin-top: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; height: 100%; }
.slide.active { opacity: 1; }
.slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.slide-content { position: relative; z-index: 2; color: #fff; padding: 20px; width: 100%; max-width: 800px; margin-top: 60px; }
.slide-title { font-family: var(--font-logo); font-size: 3.5rem; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); animation: fadeInUp 0.8s ease; }
.slide-subtitle { font-size: 1rem; margin-bottom: 30px; font-weight: 300; animation: fadeInUp 1s ease; }
.btn-cta { background: var(--color-primary); color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 600; display: inline-block; transition: 0.3s; animation: fadeInUp 1.2s ease; }
.slide-bg-video, .slide-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.slide-bg-img { transform: scale(1); background-size: cover; background-position: center; }

/* ================= CATEGORIAS CARROSSEL ================= */
.categories-section { padding: 80px 0; width: 100%; background: #fff; position: relative; overflow: hidden; }
.section-title {
    text-align: center; font-family: var(--font-title); font-size: 2.2rem;
    font-weight: 500; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 40px; color: #535353; position: relative;
}
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 50%;
    transform: translateX(-50%); width: 90px; height: 1px; background: var(--color-primary);
}
.cat-carousel-wrapper { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; }
.cat-carousel {
    display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
    padding: 20px 5px; cursor: grab; scrollbar-width: none; -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.cat-carousel::-webkit-scrollbar { display: none; }
.cat-carousel.active { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.cat-card {
    min-width: 280px; max-width: 280px; height: 350px;
    border-radius: 12px; overflow: hidden; position: relative;
    background: #eee; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    flex-shrink: 0; user-select: none; scroll-snap-align: start;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.cat-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.cat-card:hover .cat-bg { transform: scale(1.1); }
.cat-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    color: #fff; pointer-events: none;
}
.cat-title { font-family: var(--font-title); font-size: 1.6rem; text-align: center; font-weight: 500; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.cat-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; background: #fff; border: none; border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); color: var(--color-primary); font-size: 1.3rem;
    cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0.9;
}
.cat-nav-btn:hover { background: var(--color-primary); color: #fff; opacity: 1; transform: translateY(-50%) scale(1.15); }
.cat-nav-btn:active { transform: translateY(-50%) scale(0.9); }
.cat-nav-btn.prev { left: -30px; }
.cat-nav-btn.next { right: -30px; }
@media (max-width: 1250px) { .cat-nav-btn.prev { left: 10px; } .cat-nav-btn.next { right: 10px; } }

/* ================= GRIDS DE PRODUTOS ================= */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; margin-top: 40px;
}
.product-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.3s ease;
    display: flex; flex-direction: column; height: 100%; border: 1px solid #f8f8f8;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.prod-img-box { height: 220px; overflow: hidden; position: relative; }
.prod-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .prod-img-box img { transform: scale(1.08); }
.prod-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.prod-cat { font-size: 0.75rem; text-transform: uppercase; color: #999; letter-spacing: 1px; font-weight: 600; margin-bottom: 5px; }
.prod-name { font-family: var(--font-title); font-size: 1.15rem; color: #333; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.prod-bottom-wrapper { margin-top: auto; padding-top: 15px; }
.prod-price-box { display: flex; align-items: baseline; gap: 8px; margin-bottom: 15px; }
.price-old { text-decoration: line-through; color: #bbb; font-size: 0.85rem; }
.price-current { font-weight: 700; color: #000; font-size: 1.3rem; }
.price-current.highlight { color: var(--color-primary); }
.btn-buy-sm {
    width: 100%; background: #111; color: #fff; border: none; padding: 12px;
    border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-buy-sm:hover { background: var(--color-primary); }
.badge-promo { position: absolute; top: 12px; left: 12px; background: var(--color-primary); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; z-index: 2; }
.badge-desconto { position: absolute; top: 12px; right: 12px; background: #fff; color: #333; padding: 4px 10px; border-radius: 8px; font-size: 0.7rem; font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* ================= FOOTER ================= */
.site-footer { background: #111; color: #fff; padding-top: 60px; font-size: 0.95rem; border-top: 4px solid var(--color-primary); width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #222; margin-bottom: 20px; }
.footer-brand h3 { font-family: var(--font-logo); font-size: 1.8rem; margin-bottom: 15px; color: #fff; }
.footer-brand h3 span { color: var(--color-primary); font-style: italic; }
.footer-brand p { color: #888; line-height: 1.6; max-width: 350px; }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a { color: #fff; font-size: 1.3rem; transition: 0.3s; opacity: 0.7; }
.social-icons a:hover { opacity: 1; transform: translateY(-3px); color: var(--color-primary); }
.footer-links h4, .footer-contact h4 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; font-weight: 600; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: #888; transition: 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact p { color: #888; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--color-primary); }
.footer-contact a { color: #888; display: flex; align-items: center; gap: 10px; transition: 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { background: #000; padding: 25px 0; width: 100%; }
.bottom-column { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.copyright { color: #555; font-size: 0.85rem; margin: 0; }
.dev-credit { display: flex; align-items: center; justify-content: center; gap: 8px; color: #666; font-size: 0.8rem; transition: 0.3s; text-decoration: none; }
.dev-credit:hover { color: #fff; }
.dev-logo-box { display: flex; align-items: center; gap: 6px; }
.dev-logo-box img { height: 18px; width: auto; opacity: 0.7; transition: 0.3s; }
.dev-credit:hover img { opacity: 1; }
.dev-name { font-weight: 700; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =======================================================
   RESPONSIVO MOBILE (AJUSTES SOLICITADOS)
   ======================================================= */
@media (max-width: 900px) {
    /* --- CORREÇÃO DO GRID PARA EXIBIR ÍCONE DE LOGIN --- */
    .header-content { 
        display: grid; 
        grid-template-columns: 40px 1fr auto; /* Toggle | Logo | Ações (Icones) */
        align-items: center; 
        gap: 5px;
    }
    
    .mobile-toggle { display: flex; justify-self: start; }
    .logo-text {text-align: center;font-size: 1.2rem;justify-self: center;}
    
    .desktop-nav { display: none; }
    
    /* Área de Login e Ações no Mobile */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 5px;
        justify-self: end;
    }

    /* Garante que o ícone de login apareça e tenha tamanho correto */
    .login-area { 
        display: flex !important;
        align-items: center;
        gap: 5px; 
        position: relative;
    }
    
    .btn-login-icon { display: flex; }
    
    /* --- CORREÇÃO DO MENU DE NOTIFICAÇÕES (MOBILE) --- */
    #notifDropdown { 
        /* Fixado para acompanhar o cabeçalho ao rolar */
        position: fixed !important;
        
        /* Posicionado logo abaixo do Header (Header = 70px) */
        top: 60px; 
        
        /* Alinhado para não estourar a tela */
        right: 15px; 
        left: auto;
        
        /* Menor para dispositivos móveis */
        width: 250px; 
        
        margin-top: 5px;
        transform: none;
    }

    /* --- REMOÇÃO DO FUNDO CINZA NO ÍCONE AO CLICAR --- */
    .header-wrapper.scrolled .header-icon-btn:hover,
    .header-wrapper.scrolled .btn-login-icon:hover,
    .header-icon-btn:active,
    .header-icon-btn:focus,
    .btn-login-icon:active,
    .btn-login-icon:focus {
        background: transparent !important; /* Sem fundo */
        color: var(--color-primary) !important; /* Apenas ícone muda de cor */
    }

    /* --- CARRINHO LATERAL MAIS ESTREITO NO MOBILE --- */
    .side-modal { 
        width: 295px; 
        max-width: 295px; /* Trava a largura máxima */
    }

    /* --- DROPDOWN LOGIN FLUTUANTE --- */
    .login-dropdown {
        display: block !important;
        position: fixed; /* Fixed para acompanhar a tela no mobile */
        top: 50px;
        right: 25px;
        width: 220px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        border: 1px solid #f0f0f0;
        z-index: 1200;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .login-dropdown.show { 
        opacity: 1; visibility: visible; transform: translateY(0) scale(1);
    }

    /* Outros Ajustes Mobile */
    .top-header-bar { display: none; }
    .header-wrapper.scrolled { transform: none; }
    .btn-cta{ position: relative; top: 10px; }
    .hero-slider { height: 100vh; }
    .slide-content { top: 10px; }
    .slide-title { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-brand p { margin: 0 auto; }
    .social-icons { justify-content: center; }
    .footer-contact p { justify-content: center; }
    .footer-contact a { justify-content: center; }
    .bottom-column { gap: 15px; }

    /* Ajuste Carrossel Mobile */
    .cat-nav-btn { display: flex; width: 40px; height: 40px; font-size: 1rem; opacity: 1; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
    .cat-nav-btn.prev { left: 8px; }
    .cat-nav-btn.next { right: 8px; }
    .cat-carousel { padding-left: 20px; padding-right: 20px; gap: 15px; scroll-snap-type: x mandatory; }
    .cat-card { min-width: 240px; max-width: 260px; height: 320px; scroll-snap-align: center; }
    .section-title { font-size: 1.7rem; line-height: 1.7rem; }
}