/* --- Variáveis (Cores da Marca) --- */



:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #c4a47c; /* Dourado/Bege */
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Playfair Display', serif;
    --rose-bg: #FCF4F3;   /* Um rosinha bem claro para o fundo do texto */
    --rose-dark: #C08985; /* Um rosé queimado para os botões */
}



/* --- Reset Básico --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    background-color: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Header --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #eee;
    background: white;
}

.logo a {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap; 
}

.logo span { color: var(--primary-color); }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-size: 14px; text-transform: uppercase; font-weight: 500; }
.main-nav a:hover { color: var(--accent-color); }
.promo-link { color: #d9534f !important; }

/* Ícones e Busca */
.user-actions { display: flex; gap: 20px; font-size: 18px; align-items: center; }
.search-form {
    display: flex; align-items: center; border: 1px solid #ddd; 
    border-radius: 20px; padding: 2px 10px; margin-right: 10px;
}
.search-form input { border: none; outline: none; width: 100px; font-size: 12px; }
.search-form button { background: none; border: none; cursor: pointer; }

.cart-icon { position: relative; }
.badge {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.btn-logout { background: none; border: none; cursor: pointer; font-size: 18px; color: inherit; }
.mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; }

/* --- HERO BANNER (DESKTOP) --- */
.hero-banner {
    /* Imagem Padrão (será substituída pelo JS) */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax no PC */
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    transition: background-image 1s ease-in-out;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; font-weight: 500;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1.1; margin-bottom: 20px;
}
.hero-content p { font-size: 16px; margin-bottom: 35px; }

.btn-hero {
    display: inline-block; background-color: white; color: black; padding: 15px 40px;
    font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 12px;
    letter-spacing: 2px; font-weight: 600; transition: 0.3s; border: 1px solid white;
}
.btn-hero:hover { background-color: transparent; color: white; }

/* --- VITRINE PRODUTOS (DESIGN NOVO) --- */

/* Caixa de Preços (Para alinhar o De/Por) */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Preço Antigo (Riscado) */
.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through; /* O risco no meio */
    font-weight: 400;
}

/* Preço Novo (Destaque) */
.current-price {
    font-family: var(--font-title);
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}
/* Se for promoção, pintamos o preço de vermelho chique */
.current-price.promo { color: #c4a47c; }

/* Etiquetas (Badges em cima da foto) */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge-tag {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 8px;
    color: white;
    border-radius: 2px;
    letter-spacing: 1px;
}

.badge-new { background-color: black; }
.badge-sale { background-color: #c4a47c; } /* Dourado */

.products-section { padding: 50px 5%; max-width: 1400px; margin: 0 auto; }


/* --- TÍTULO SELEÇÃO ESPECIAL (ESTILO PREMIUM) --- */
.special-header {
    text-align: center;
    margin: 40px 0 50px;
    padding: 0 20px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--accent-color); /* Cor Dourada */
}

/* As linhas laterais */
.header-decoration::before,
.header-decoration::after {
    content: '';
    display: block;
    height: 1px;
    width: 60px; /* Comprimento da linha */
    background: linear-gradient(to right, transparent, var(--accent-color), transparent); /* Linha que some nas pontas */
}

/* A Estrela no meio */
.header-star {
    font-size: 20px;
    color: var(--accent-color);
}

.main-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* --- TÍTULO DESTAQUE/CATEGORIA (CORRIGIDO) --- */
.section-title {
    display: flex;             
    align-items: center;       
    justify-content: center;   
    gap: 20px;                 
    
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500; /* Mais leve, mais elegante */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111;
    
    margin: 40px auto 40px; /* Centralizado */
    width: 100%;
    max-width: 900px; /* Limita a largura para as linhas não ficarem infinitas */
}

/* Linhas Laterais (O segredo do design "cheio") */
.section-title::before,
.section-title::after {
    content: '';
    display: block;
    height: 1px;               /* Linha fina e elegante */
    background-color: #ddd;    /* Cor suave (cinza claro) */
    flex: 1;                   /* Ocupa todo o espaço que sobrar nas laterais */
    max-width: 150px;          /* Limita a largura no PC para não ficar exagerado */
}

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px;
}

.product-card { 
     border-radius: 20px; /* Bordas bem redondas */
    overflow: hidden;    /* Corta tudo que sair da borda (importante pro fundo rosa) */
    background-color: var(--white);
    border: 1px solid #f0f0f0;
    display: flex;       /* Garante estrutura em coluna */
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s; }

    /* Área dos Botões */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Estilo Básico do Botão */
.btn-card {
    flex: 1;
    padding: 10px 0;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: 0.2s;
}

/* Botão Comprar (Preenchido) */
.btn-buy {
    background-color: var(--rose-dark);
    color: white;
    border: 1px solid var(--rose-dark);
}
.btn-buy:hover { background-color: #a87672; }

/* Botão Espiar (Borda) */
.btn-spy {
    background-color: transparent;
    color: var(--rose-dark);
    border: 1px solid var(--rose-dark);
}
.btn-spy:hover { background-color: white; }

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


.card-image {
    height: 380px; /* Altura fixa (pode aumentar se quiser fotos mais altas) */
    width: 100%;
    margin: 0;     /* Remove margens para colar no fundo rosa */
    position: relative;
    background-color: #fff;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* O SEGREDO: Corta a foto para preencher sem esticar */
    object-position: top center; /* Garante que o rosto apareça */}

.card-content-rose {
    background-color: var(--rose-bg); /* Fundo rosa cobre tudo */
    padding: 15px 15px 20px 15px;     /* Espaçamento interno */
    flex-grow: 1;                     /* Ocupa todo o espaço restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover .card-image img { transform: scale(1.1); }

.btn-quick-view {
    position: absolute; bottom: -50px; left: 0; width: 100%; background: rgba(255,255,255,0.95);
    border: none; padding: 15px; text-transform: uppercase; font-weight: 600; font-size: 12px; transition: 0.3s;
}
.card-image:hover .btn-quick-view { bottom: 0; }

.card-info {
    text-align: center;
    margin-bottom: 15px;}

.card-info h3 { 
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 600; }

.card-info .category { color: #999; font-size: 11px; text-transform: uppercase; margin-bottom: 10px; }
.card-info .price { font-weight: 600; font-size: 16px; color: #111; }
.btn-cta { display: inline-block; background: black; color: white; padding: 10px 20px; margin-top: 10px; }

/* --- ANIMAÇÃO FRETE (MARQUEE) --- */
.top-bar-marquee {
    background-color: var(--primary-color); color: white; padding: 8px 0; font-size: 10px;
    text-transform: uppercase; letter-spacing: 1px; overflow: hidden; white-space: nowrap;
}
.marquee-content { display: inline-block; padding-left: 100%; animation: marquee 17s linear infinite; }
@keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

/* --- FOOTER --- */
.main-footer { background-color: #1a1a1a; color: #ccc; padding-top: 60px; margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; padding: 0 5% 50px; flex-wrap: wrap; }
.footer-column { width: 30%; min-width: 250px; margin-bottom: 20px; }
.footer-column h3 { color: var(--white); font-family: var(--font-title); margin-bottom: 20px; }
.footer-column ul li { margin-bottom: 10px; font-size: 14px; }
.footer-column ul li a:hover { color: var(--white); text-decoration: underline; }
.social-links { margin-top: 20px; font-size: 20px; }
.social-links a { margin-right: 15px; }
.payment-icons { font-size: 24px; margin-bottom: 20px; display: flex; gap: 10px; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 20px; font-size: 12px; }

/* --- ESCONDE CABEÇALHO MOBILE NO PC --- */
.mobile-nav-header {
    display: none;
}

/* Esconde itens exclusivos de celular quando estiver no PC */
.mobile-only-item {
    display: none !important;
}

.mobile-bottom-nav {
    display: none !important;
}

/* ========================================= */
/*      RESPONSIVIDADE (CELULAR) - FINAL     */
/* ========================================= */
@media (max-width: 768px) {
    
    /* 1. HEADER (Logo + Nome Ajustados) */
    .nav-container {
        padding: 10px 15px;
        display: flex; justify-content: space-between; align-items: center;
        height: 70px;
    }

    .mobile-menu-btn { display: block; font-size: 22px; color: var(--black); width: 30px; }

    /* Logo Centralizada com Nome */
    .logo {
        position: absolute; left: 50%; transform: translateX(-50%);
        display: flex; align-items: center; gap: 6px; width: max-content;
    }
    .logo img { height: 32px; }
    .logo span { 
        display: block !important; font-size: 13px !important; font-weight: 600;
        letter-spacing: 0.5px; white-space: nowrap; color: var(--black);
    }

    /* Ícones e Busca */
    .user-actions { gap: 12px; margin-left: auto; }
    .search-form { display: none !important; } /* Esconde caixa de busca no mobile */

    /* 2. BANNER MOBILE (Ajuste de Altura) */
    .hero-banner {
        position: relative;
        background-image: url('/img/banner-mobile.png') !important;
        
        background-attachment: scroll !important;
        background-position: center top !important; /* Começa do topo */
        background-size: cover;
        
        /* AUMENTAMOS AQUI: De 130vw para 160vw */
        /* Isso faz o banner ficar mais alto, revelando os pés */
        height: 160vw; 
        max-height: 90vh; /* Limite de segurança */
        
        box-shadow: none;
        margin-bottom: 10px !important;
    }

    .hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Altura do esfumaçado */
    background: linear-gradient(to bottom, transparent, #ffffff); /* Do transparente para o branco */
    pointer-events: none; /* Permite clicar nos botões mesmo com o efeito por cima */
    }

    /* Tira a margem de cima do título e diminui a fonte */
    .section-title {
        font-size: 24px;         /* Tamanho bom para celular */
        margin: 20px 0 25px;     /* Menos espaço em cima e embaixo */
        gap: 10px;               /* Linhas mais perto do texto */
    }
    
    /* No celular, as linhas podem esticar até a borda */
    .section-title::before,
    .section-title::after {
        max-width: none;         /* Remove limite de largura das linhas */
    }

    /* Tira bordas extras da vitrine */
    .products-section {
        padding: 0 10px 40px;    /* Tira o padding de cima (era 50px) */
    }


    .hero-content { display: none; }

    /* --- MENU LATERAL (DRAWER) --- */
    
    /* Fundo Escuro (Overlay) */
    .menu-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); /* Preto meio transparente */
        z-index: 1999; /* Atrás do menu, na frente do site */
        display: none; /* Começa escondido */
        backdrop-filter: blur(2px); /* Efeito de desfoque chique */
    }
    .menu-overlay.active { display: block; }

    /* A Gaveta Branca */
    .main-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: -100%; /* Escondido na esquerda */
        width: 80%;
        height: 100vh; /* Altura total da tela */
        background-color: white;
        z-index: 99999; /* Bem na frente */
        transition: left 0.3s ease; /* Animação */
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        padding: 0;
        overflow-y: auto; /* Permite rolar se o menu for comprido */
    }

    /* Quando ativa, desliza para a tela */
    .main-nav.active {
        left: 0 !important; /* Traz para a tela */
    }

    /* Cabeçalho de dentro do Menu */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #f9f9f9;
        border-bottom: 1px solid #eee;
    }
    
    .close-menu-btn {
        font-size: 30px;
        cursor: pointer;
        line-height: 20px;
    }

    /* Lista de Links */
    .main-nav ul {
        flex-direction: column;
        text-align: left;
        margin: 0;
        padding: 10px 0;
    }

    .main-nav li {
        border-bottom: 1px solid #f4f4f4;
        padding: 0;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px 25px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .main-nav a:hover {
        background-color: #fafafa;
        color: var(--accent-color);
        padding-left: 30px; /* Efeito de deslizar ao tocar */
    }

    /* Destaque para links Admin */
    .admin-link a { color: var(--accent-color) !important; font-weight: bold; }
    
    .product-grid {
        /* Transforma em 2 colunas iguais */
        grid-template-columns: 1fr 1fr !important; 
        gap: 10px; /* Espaço pequeno entre eles */
        padding: 0 10px; /* Espaço nas laterais da tela */
    }

    .product-card {
        text-align: left; /* Alinha texto à esquerda igual a referência */
        border: none;
        background: transparent; /* Fundo limpo */
    }

    .product-card:hover {
        transform: none; /* Remove efeito de pular no celular */
    }

    .card-image {
        /* Altura ajustada para ficar proporcional em 2 colunas */
        height: 260px; 
        font-size: 0;
        line-height: 0;
        margin: 0;
        display: block;
    }

    .card-info h3 {
        font-family: 'Montserrat', sans-serif; /* Fonte mais limpa */
        font-size: 13px; /* Tamanho delicado */
        font-weight: 400; /* Letra normal (não negrito) */
        text-transform: uppercase;
        margin-bottom: 2px;
        color: #333;
        letter-spacing: 0.5px;
        
        /* Limita a 1 linha e coloca "..." se for muito grande */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .card-info .price {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--black);
    }

    /* Esconde a categoria e o botão "Ver Detalhes" no celular para limpar o visual */
    .card-info .category { display: none; }
    .btn-quick-view { display: none !important; }

    .dropdown-content {
        position: static; /* No celular, ele empurra o menu pra baixo */
        box-shadow: none;
        display: none; /* JS controlaria clique aqui, mas hover funciona +- */
        border: none;
        padding-left: 20px; /* Indentação */
        background: #f9f9f9;
    }
    .dropdown:hover .dropdown-content { display: block; } /* Simples para mobile */

    .filter-bar {
        justify-content: space-between;
        padding: 0 20px 15px;
        gap: 10px;
    }
    .filter-label { display: none; } /* Esconde texto no celular */
    .filter-bar select { width: 100%; }


    /* 1. LIMPAR O TOPO (HEADER) */
    .user-actions { 
        display: none !important; /* Esconde os ícones de cima no celular */
    }
    
    .logo {
        /* Centraliza a logo perfeitamente agora que não tem ícones na direita */
        position: static; 
        transform: none;
        margin: 0 auto;
    }

    /* 2. BARRA DE NAVEGAÇÃO INFERIOR (NOVA) */
    .mobile-bottom-nav {
        display: flex !important; /* Força aparecer no celular */
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 350px;
        background-color: rgba(60, 60, 60, 0.85); /* Fundo Escuro Transparente */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px); /* Para iPhone */
        padding: 12px 20px;
        border-radius: 50px; /* Borda bem redonda */
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        transition: transform 0.4s ease-in-out, opacity 0.4s;
    }

    /* CLASSE PARA ESCONDER */
    .mobile-bottom-nav.nav-hidden {
        transform: translate(-50%, 200%) !important; /* Desce muito */
        opacity: 0 !important;
        visibility: hidden !important; /* Desaparece para o mouse/dedo */
        transition: all 0.3s ease-in-out !important;
    }

    /* SUBIR WHATSAPP (PARA NÃO FICAR ATRÁS DA BARRA) */
    .whatsapp-float {
        bottom: 95px !important; /* Sobe para ficar acima da barra */
        right: 15px !important;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        font-size: 10px;
        text-decoration: none;
        gap: 4px;
        font-family: 'Montserrat', sans-serif;
    }

    .nav-item i {
        font-size: 20px;
        margin-bottom: 2px;
    }

    /* Bolinha Vermelha (Badge) */
    .icon-container { position: relative; }
    
    .nav-badge {
        position: absolute;
        top: -5px; right: -8px;
        background-color: #ff6b6b; /* Cor de destaque (coral/vermelho) */
        color: white;
        font-size: 9px;
        font-weight: bold;
        width: 16px; height: 16px;
        border-radius: 50%;
        display: flex; justify-content: center; align-items: center;
        border: 2px solid rgba(60,60,60,1);
    }

    /* Mostra o item quando for celular */
    .mobile-only-item {
        display: block !important;
    }

    /* --- AJUSTE DO RODAPÉ NO CELULAR --- */
    .main-footer {
        padding: 40px 20px 80px; /* Mais espaço nas laterais e embaixo (pra não bater na barra flutuante) */
        text-align: center; /* Centraliza tudo no celular */
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px; /* Espaço entre os blocos (Sobre, Ajuda, Pagamento) */
    }

    .footer-column {
        width: 100%;
        min-width: auto;
        margin-bottom: 0;
    }
    
    /* Aumenta um pouco os ícones para dedo */
    .social-links a { font-size: 24px; margin: 0 10px; }

    /* DENTRO DO @MEDIA MOBILE */
    
    .payment-icons {
        justify-content: center !important; /* Força o centro */
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
}

/* --- MENU DROPDOWN (DESKTOP) --- */
.dropdown { position: relative; display: inline-block; }

/* A caixa que abre */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--accent-color);
}

/* Mostra ao passar o mouse */
.dropdown:hover .dropdown-content { display: block; }

/* Estilo dos itens dentro */
.dropdown-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.dropdown-item:last-child { border: none; margin: 0; }

.cat-title { 
    font-weight: bold; 
    color: var(--primary-color) !important; 
    display: block; 
    margin-bottom: 5px;
}

.sub-links a {
    display: block;
    font-size: 12px !important;
    color: #666 !important;
    padding: 2px 0;
    text-transform: capitalize !important; /* Primeira letra maiúscula */
}
.sub-links a:hover { color: var(--accent-color) !important; padding-left: 5px; }

/* --- BOTÃO WHATSAPP FLUTUANTE (GLOBAL) --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000; /* Fica na frente de tudo */
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Cresce um pouco ao passar o mouse */
    color: white;
}

/* --- BOTÃO WHATSAPP NO PRODUTO --- */
.btn-whatsapp-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: 1px solid #25d366;
    color: #25d366;
    background: transparent;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-whatsapp-product:hover {
    background-color: #e9fdf0;
}

/* --- BARRA DE FILTROS --- */
.filter-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px; /* Centralizado horizontalmente com margem embaixo */
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    max-width: 1400px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.filter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* O SEGREDO ESTÁ AQUI (SELECT) */
.filter-bar select {
    /* 1. Remove o estilo feio do Windows/Chrome */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* 2. Design do Botão */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 30px; /* Bem Redondo */
    padding: 10px 40px 10px 15px; /* Espaço extra na direita pra setinha */
    
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: 0.3s;

    /* 3. A Setinha Customizada (Desenho SVG) */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Posiciona na direita */
    background-size: 14px; /* Tamanho da setinha */
}

/* Efeito ao passar o mouse */
.filter-bar select:hover {
    border-color: #000;
    background-color: #fafafa;
}

/* Link de Limpar */
.clear-filters {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #d9534f;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #d9534f;
}

/* --- PAGINAÇÃO (BOTÕES PREV/NEXT) --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.page-btn {
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.page-btn:hover {
    background-color: black;
    color: white;
    border-color: black;
}

.page-info {
    font-size: 12px;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}