/* Estilos globais para a página */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* bg-gray-100 */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Cor personalizada Ciano */
.text-ciano {
    color: #326168;
}

/* Estilos do botão de acesso */
.access-button {
    background-color: #F6706D;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.access-button:hover {
    background-color:#326168;
    transform: scale(1.05);
}

/* Estilos do carrossel de banners (index.html) */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* ALTERADO: Remove o arredondamento de cima, mantém o de baixo */
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px; /* Altura padrão */
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém 'cover' para não ter bordas */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* Por padrão, centraliza */
    object-position: center center; 
}

/* Regra específica para o banner 1 */
.carousel-slide img[src="assets/banner1.png"] {
    object-position: center center; /* Este banner fica bom centralizado */
}

/* Regra específica para o banner 2 */
.carousel-slide img[src="assets/banner2.png"] {
    /* Desloca o foco para 75% à direita, mostrando melhor as pessoas */
    object-position: 75% 50%; 
}

.carousel-slide img.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 30vh; /* Reduz ainda mais o corte */
    }

    /* Ajusta a posição do banner 2 especificamente no mobile */
    .carousel-slide img[src="assets/banner2.png"] {
        /* No mobile, 80% para a direita captura melhor o rosto */
        object-position: 80% 50%; 
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.left { left: 1.5rem; }
.carousel-button.right { right: 1.5rem; }

/* Layout de grid (usado em várias páginas) */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-layout.sm-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .grid-layout.md-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-layout.lg-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .grid-layout.lg-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Estilos do recurso de ícone (index.html, sobre.html) */
.icon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #f8fafc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.icon-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-feature img {
    height: 3rem;
    width: auto;
    margin-bottom: 0.75rem;
    /* Cor vermelha F6706D */
    filter: invert(60%) sepia(38%) saturate(3019%) hue-rotate(320deg) brightness(100%) contrast(95%);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.icon-feature:hover img {
    transform: scale(1.1);
     /* Cor ciano 326168 */
    filter: invert(30%) sepia(21%) saturate(1917%) hue-rotate(145deg) brightness(94%) contrast(88%);
}

/* Estilos da seção de produtos (index.html) */
.products-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #326168; /* Ciano */
    position: relative;
    padding-bottom: 0.5rem;
}

.products-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F6706D; /* Vermelho */
    border-radius: 2px;
}

.product-card-with-image {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* cinza claro */
    position: relative;
    padding-bottom: 1rem; 
}

.product-card-with-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.product-icon-container {
    position: absolute;
    top: -1.5rem; 
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.product-card-with-image:hover .product-icon-container {
    transform: translateX(-50%) scale(1.1);
}

.product-icon-container img {
    width: 2.5rem;
    height: 2.5rem;
    filter: none; /* Remove o filtro dos ícones dos cards */
}

.product-image-container {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.catalog-button {
    background-color: #F6706D; /* Vermelho */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.catalog-button:hover {
    background-color: #326168; /* Ciano */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 97, 104, 0.4);
}

.download-button {
    background-color: #326168; /* Ciano */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.download-button:hover {
    background-color: #F6706D; /* Vermelho */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(246, 112, 109, 0.4);
}

.learn-more-button {
    background-color: #326168; /* Ciano */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.learn-more-button:hover {
    background-color: #326168;
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 97, 104, 0.4);
}

/* Estilos do carrossel de depoimentos (index.html) */
.testimonials-section {
    background-color: #f8fafc; /* bg-gray-50 ou bg-white dependendo da preferência */
}

.testimonials-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #326168; /* Ciano */
    position: relative;
    padding-bottom: 0.5rem;
}

.testimonials-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F6706D; /* Vermelho */
    border-radius: 2px;
}

.testimonials-carousel-container-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4rem; /* Espaço para os botões */
}

.testimonials-carousel-track-new {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    min-height: 250px; /* Garante altura mínima enquanto troca */
}

.testimonials-carousel-item-new {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.testimonials-carousel-item-new.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}
        
.testimonials-carousel-button-new {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50, 97, 104, 0.8); /* Ciano com transparência */
    color: white;
    width: 3rem; /* Tamanho fixo */
    height: 3rem; /* Tamanho fixo */
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel-button-new:hover {
    background-color: #F6706D; /* Vermelho */
    transform: translateY(-50%) scale(1.1);
}

.testimonials-carousel-button-new.left { left: 0; }
.testimonials-carousel-button-new.right { right: 0; }

.testimonial-card {
    background-color: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card p.italic {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.testimonial-card .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #326168; /* Ciano */
}

.testimonial-card .author-details {
    text-align: left;
}

.testimonial-card .author-details .font-bold {
    color: #326168; /* Ciano */
}

.testimonial-card .author-details .text-sm {
    color: #F6706D; /* Vermelho */
}

.testimonial-card .stars {
    color: #F6706D; /* Vermelho */
    margin-top: 0.5rem;
}

/* Estilos do Botão Flutuante e Modal do WhatsApp (whatsapp.html) */
/* Estes estilos foram movidos para estilos/whatsapp.css */

/* ========== NOVOS ESTILOS PARA SEÇÃO DE ATENDIMENTO ========== */
.atendimento-section {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden; /* Para a animação */
}

.atendimento-card {
    background-color: #f8fafc; /* bg-gray-50 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Espaço entre os itens */
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

    /* Animação de entrada */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s 0.2s ease-out forwards;
}

@media (min-width: 768px) {
    .atendimento-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 2.5rem;
    }
}

.atendimento-icon {
    font-size: 3rem; /* Tamanho do ícone */
    color: #326168; /* Cor Ciano */
    flex-shrink: 0;
    /* ALTERADO: Adicionada transição de 'color' */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.atendimento-card:hover .atendimento-icon {
    transform: scale(1.1) rotate(-5deg);
    color: #F6706D; /* ALTERADO: Adicionada cor vermelha no hover */
}

.atendimento-info {
    text-align: center;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .atendimento-info {
        text-align: left;
    }
}

/* NOVO: Estilo para o texto de aviso de horário */
.atendimento-info .atendimento-aviso {
    color: #F6706D; /* Vermelho */
    font-weight: 500; /* Dando um leve destaque no peso */
}

.status-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px; /* rounded-full */
    transition: all 0.3s ease-in-out;
    min-width: 140px; /* Largura mínima para "Prestes a Fechar" */
    text-align: center;
    border: 2px solid transparent;
}

/* Estado de Carregamento */
.status-tag.loading {
    background-color: #e5e7eb; /* bg-gray-200 */
    color: #6b7280; /* text-gray-500 */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Estado Aberto */
.status-tag.aberto {
    background-color: #dcfce7; /* bg-green-100 */
    color: #166534; /* text-green-800 */
    border-color: #86efac; /* border-green-300 */
    box-shadow: 0 2px 4px rgba(22, 101, 52, 0.1);
}

/* Estado Prestes a Fechar */
.status-tag.prestes-a-fechar {
    background-color: #fef3c7; /* bg-yellow-100 */
    color: #854d0e; /* text-yellow-800 */
    border-color: #fde047; /* border-yellow-300 */
    box-shadow: 0 2px 4px rgba(133, 77, 14, 0.1);
}

/* Estado Fechado */
.status-tag.fechado {
    background-color: #fee2e2; /* bg-red-100 */
    color: #991b1b; /* text-red-800 */
    border-color: #fca5a5; /* border-red-300 */
    box-shadow: 0 2px 4px rgba(153, 27, 27, 0.1);
}
/* ========== FIM DOS NOVOS ESTILOS ========== */


/* Estilos específicos para o acordeão da AJUDA (ajuda.html) */
.accordion-header {
    transition: background-color 0.2s ease-in-out;
}
.accordion-header:hover {
    background-color: #f9fafb;
}
.accordion-header .fa-chevron-down {
    transition: transform 0.3s ease-in-out;
    color: #F6706D;
}
.accordion-header.active {
     background-color: #f9fafb;
}
.accordion-header.active .fa-chevron-down {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background-color: #fdfdfd;
    color: #4b5563;
    line-height: 1.6;
}
.accordion-content p {
    padding: 0.25rem 0;
}
.accordion-content ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0.5rem;
    margin-top: 0.5rem;
}
.accordion-content a {
    color: #F6706D;
    text-decoration: underline;
    transition: color 0.2s;
}
.accordion-content a:hover {
    color: #326168;
}

/* Estilos para os Cards de Contato (ajuda.html) */
.contact-card {
    display: block;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.contact-card i {
    font-size: 3rem;
    color: #326168; /* Cor padrão Ciano */
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}
.contact-card:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: #F6706D; /* Cor Vermelha no hover */
}
.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #326168;
    margin-bottom: 0.25rem;
}
.contact-card p {
    color: #4b5563;
}

/* Ícones do FAQ (ajuda.html) */
.faq-icon {
    color: #F6706D;
    margin-right: 0.75rem; /* mr-3 */
    width: 1.25rem; /* w-5 */
    text-align: center;
}
.accordion-header span {
    display: flex;
    align-items: center;
}

/* Estilos para o sistema de abas (Tabs) (politicas.html) */
.tab-button {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: #326168; 
    background-color: #e5e7eb; 
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; 
    border-top-left-radius: 0.5rem; 
    border-top-right-radius: 0.5rem; 
    margin-bottom: -1px;
    text-align: center;
    border: 1px solid #d1d5db; 
    margin-right: 4px; 
    border-top-width: 3px; 
    border-top-color: transparent;
}

.tab-button:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    .tab-button {
        font-size: 1.125rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .tab-button {
        flex-basis: 100%; 
        justify-content: flex-start;
        border-radius: 0.5rem 0.5rem 0 0;
        margin-right: 0;
    }
    
    .tab-button:not(:last-child) {
        margin-bottom: 4px;
    }
    
    .tab-button.active {
        margin-bottom: -1px;
    }
}

.tab-button:hover {
    background-color: #d1d5db;
    border-color: #adb5bd;
    border-top-color: transparent;
}

.tab-button.active {
    background-color: #ffffff; 
    color: #326168; 
    z-index: 10;
    border-top-color: #F6706D; 
    border-bottom-color: transparent;
    border-left-color: #d1d5db;
    border-right-color: #d1d5db;
}

.tab-button.active:hover {
    border-top-color: #F6706D;
    border-left-color: #d1d5db;
    border-right-color: #d1d5db;
}

.tab-button .policy-icon {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    color: #326168; /* Corrigido: Ícone da aba inativa */
}

.tab-button.active .policy-icon {
    transform: scale(1.1);
    color: #F6706D; 
}

.tab-content {
    display: none; 
    animation: fadeIn 0.5s ease-in-out;
    background-color: #ffffff;
    border-radius: 0 0.5rem 0.5rem 0.5rem; /* Ajuste para mobile */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #d1d5db; /* Borda correspondente aos botões */
    border-top: none;
    z-index: 5;
    position: relative;
}

@media (max-width: 767px) {
     .tab-content {
        border-radius: 0 0 0.5rem 0.5rem;
     }
     .tab-button.active {
        border-radius: 0.5rem 0.5rem 0 0;
     }
}

.tab-content.active {
    display: block; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-content h3 {
    color: #326168;
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    margin-top: 1.25rem; /* mt-5 */
    margin-bottom: 0.5rem; /* mb-2 */
}
.policy-content p, .policy-content ul {
    color: #4b5563; /* text-gray-600 */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem; /* mb-4 */
}
.policy-content ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0.5rem; /* pl-2 */
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}
.policy-content strong {
    color: #1f2937; /* text-gray-800 */
    font-weight: 600;
}
.policy-content a {
    color: #F6706D;
    text-decoration: underline;
    transition: color 0.2s;
}
.policy-content a:hover {
    color: #326168;
}

/* --- NOVOS ESTILOS PARA catalogo.html --- */
        
/* Container principal da página de catálogo */
.catalog-container {
    display: grid;
    /* Começa com o layout da sidebar visível */
    grid-template-columns: 280px 1fr; 
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    transition: grid-template-columns 0.3s ease-in-out;
}

/* Estado 'sidebar-collapsed' */
.catalog-container.sidebar-collapsed {
    grid-template-columns: auto 1fr;
}


/* Botão de Filtro Mobile */
.mobile-filter-toggle {
    display: none; /* Escondido no desktop */
    background-color: #326168;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    grid-column: 1 / -1; /* Ocupa a largura total no mobile */
}
.mobile-filter-toggle:hover {
    background-color: #F6706D;
}

/* Botão de Filtro Desktop (novo) */
.desktop-filter-toggle {
    display: none; /* Escondido no mobile */
    background: none;
    border: none;
    color: #326168;
    cursor: pointer;
    font-size: 1.5rem; /* 24px */
    transition: color 0.2s ease, transform 0.2s ease;
}
.desktop-filter-toggle:hover {
    color: #F6706D;
    transform: scale(1.1);
}

/* Sidebar de Filtros */
.filter-sidebar {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    align-self: start; /* Alinha ao topo do grid */
    width: 280px;
    transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease-out, border 0.3s ease;
    overflow: hidden;
    transform-origin: left;
    border: 1px solid #e5e7eb; /* Borda sutil */
}

/* Estado colapsado do sidebar */
.filter-sidebar.collapsed {
    width: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    transform: translateX(-100%);
    border-color: transparent;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    /* White-space nowrap para evitar quebra de linha durante a animação */
    white-space: nowrap; 
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #326168;
    margin-bottom: 1rem;
    border-bottom: 2px solid #F6706D;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.filter-group ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-group li {
    display: flex;
    align-items: center;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: #F6706D; /* Cor do check/radio */
    width: 1.15rem;
    height: 1.15rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* Inputs de preço customizados */
.filter-group .input-field {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-group .input-field:focus {
    border-color: #326168;
    box-shadow: 0 0 0 3px rgba(50, 97, 104, 0.3);
    outline: none;
}

.filter-group .input-field::-webkit-outer-spin-button,
.filter-group .input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-group .price-range-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.filter-group .price-range-inputs .prefixo-rs {
    color: #6b7280;
    font-size: 0.9rem;
}
.filter-group .price-range-inputs .separador-preco {
    color: #326168;
    font-weight: 600;
}


.filter-group label {
    color: #4b5563;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: normal; /* Permite quebra de linha no label */
}

.filter-group label:hover {
    color: #F6706D;
}

/* Botão Limpar Filtros */
#clear-filters-btn {
    background-color: #F6706D;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}
#clear-filters-btn:hover {
    background-color: #e05a57; /* Tom mais escuro de vermelho */
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* Grid de Produtos */
.product-grid-container {
    flex: 1; /* Ocupa o espaço restante */
    transition: width 0.3s ease;
    /* Adicionado para o scroll */
    position: relative; 
}

/* Animação de Fade para a troca de página */
.product-grid.fade-out {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}
.product-grid.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.1s; /* Leve delay para garantir que o fade-out terminou */
}


.product-grid-header {
    display: flex;
    flex-wrap: wrap; /* Permite quebra de linha em telas menores */
    align-items: center;
    justify-content: space-between; /* Itens se alinham nas pontas */
    gap: 1rem; /* Espaço entre os itens */
    margin-bottom: 1.5rem; /* Ajuste da margem inferior */
}

.product-grid-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Espaço entre o ícone e o título */
}

.product-grid-header .products-section-title {
    margin-bottom: 0; /* Remover margem inferior do título */
    text-align: left;
    font-size: 2rem; /* Reduzir um pouco o título para caber */
}

.product-grid-header .products-section-title::after {
    left: 0; /* Alinhar linha à esquerda */
    transform: translateX(0);
}

/* Estilização do Select "Ordenar por" */
.sort-select-wrapper {
    position: relative;
    display: inline-block;
}

.sort-by-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 0.5rem 2.5rem 0.5rem 0.75rem; /* py-2 pl-3 pr-10 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #326168; /* text-ciano */
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

.sort-by-select:hover {
    border-color: #adb5bd;
}

.sort-by-select:focus {
    outline: none;
    border-color: #F6706D; /* focus:border-red-500 */
    box-shadow: 0 0 0 3px rgba(246, 112, 109, 0.4); /* Anel focado */
}

/* Seta customizada para o select */
.sort-select-wrapper::after {
    content: '\f078'; /* Ícone de seta para baixo (FontAwesome) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    color: #326168;
    pointer-events: none; /* Permite clicar no select */
    font-size: 0.8rem;
}


/* Card de Produto do Catálogo */
.catalog-product-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease; /* Animação de entrada */
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.catalog-product-card .product-image-container {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.catalog-product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-product-card:hover .product-image {
    transform: scale(1.05);
}

.catalog-product-card .product-info {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-product-card h4 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #326168;
    margin-bottom: 0.5rem;
    min-height: 2.75em; /* Garante altura para 2 linhas */
}

.catalog-product-card .product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F6706D;
    margin-bottom: 1rem;
}

.catalog-product-card .product-price .price-small {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b7280;
}

/* Botão "Solicitar Orçamento" - reutiliza .catalog-button */
.catalog-product-card .catalog-button {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* NOVO BOTÃO: Visualizar Item */
.view-item-button {
    background-color: #326168; /* Ciano */
    color: white;
    padding: 0.6rem 1rem; /* Mesmo padding do botão de orçamento */
    border-radius: 9999px; /* rounded-full */
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    width: 100%; /* Ocupa a largura total */
    font-size: 0.9rem; /* Mesmo font-size do botão de orçamento */
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.view-item-button:hover {
    background-color: #F6706D; /* Vermelho */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(246, 112, 109, 0.4);
}
/* Fim do novo botão */


#no-results {
    text-align: center;
    color: #4b5563;
    font-size: 1.25rem;
    padding: 3rem;
    width: 100%;
    /* display: none; // Controlado pelo JS */
}

/* --- Estilos de Paginação --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* CORREÇÃO: Aplicar estilos na UL dentro do container */
.pagination-container ul {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
    list-style-type: none; /* Remove os bullets */
}

.pagination-container .page-item {
    margin: 0 2px;
    list-style-type: none; /* Garantia extra */
}

.pagination-container .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #326168;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
}

.pagination-container .page-link:hover {
    background-color: #f3f4f6;
    border-color: #adb5bd;
}

.pagination-container .page-item.active .page-link {
    background-color: #326168;
    color: white;
    border-color: #326168;
    z-index: 2;
}

.pagination-container .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #e5e7eb;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.pagination-container .page-link .fa-chevron-left,
.pagination-container .page-link .fa-chevron-right {
     font-size: 0.8rem;
}
/* --- Fim Estilos de Paginação --- */


/* Media queries para responsividade do catálogo */
@media (min-width: 768px) {
    /* Mostra o botão de toggle do desktop */
    .desktop-filter-toggle {
        display: block; 
    }
    
    /* Ajuste no grid de produtos quando o sidebar está visível (padrão) */
    .catalog-container:not(.sidebar-collapsed) .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* Ajuste no grid de produtos quando o sidebar está oculto */
    .catalog-container.sidebar-collapsed .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    /* Ajuste no grid de produtos quando o sidebar está visível */
    .catalog-container:not(.sidebar-collapsed) .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    /* Ajuste no grid de produtos quando o sidebar está oculto */
    .catalog-container.sidebar-collapsed .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .catalog-container {
        display: block; /* Volta ao fluxo normal */
        grid-template-columns: 1fr; /* Garante que o grid não se aplique */
    }
    .mobile-filter-toggle {
        display: block; /* Mostra o botão no mobile */
        margin-bottom: 1rem;
    }
    
    .filter-sidebar {
        display: none; /* Esconde o sidebar por padrão no mobile */
        width: 100%;
        flex-basis: auto;
        position: relative;
        z-index: 50;
        transform: none !important; 
        opacity: 1 !important; 
        padding: 1.5rem !important; 
        white-space: normal; /* Permite quebra de linha no mobile */
    }
    
    .filter-sidebar.open {
        display: block; /* Mostra quando a classe 'open' é adicionada */
        animation: slide-down 0.3s ease-out;
    }
    
    .product-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .product-grid-header {
        justify-content: space-between; /* Mantém espaço entre */
        flex-direction: column; /* Empilha no mobile */
        align-items: stretch; /* Estica os itens */
    }
    .product-grid-header-left {
        justify-content: center; /* Centraliza título e ícone */
        margin-bottom: 1rem;
    }
    
    .product-grid-header .products-section-title {
        text-align: center;
        font-size: 2.25rem; /* Um pouco menor no mobile */
    }
    .product-grid-header .products-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .desktop-filter-toggle {
        display: none; /* Esconde botão desktop no mobile */
    }
}

@media (max-width: 480px) {
    .product-grid {
         grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* --- NOVOS KEYFRAMES PARA ANIMAÇÕES --- */
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Botão Subir ao Topo */
#scrollToTopBtn {
    position: fixed;
    bottom: 5.5rem; /* Posição acima do botão do WhatsApp */
    right: 1.5rem;
    width: 3rem; /* 48px */
    height: 3rem; /* 48px */
    background-color: rgba(50, 97, 104, 0.8); /* Ciano com transparência */
    color: white;
    border-radius: 50%;
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #F6706D;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #326168;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #F6706D;
}

body {
    scrollbar-width: thin;
    scrollbar-color: #326168 #f1f1f1;
}