.header-full {
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
    padding: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.capa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contato-wrapper {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.btn-cont {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #974ecb 0%, #e3197e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: fit-content;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-cont img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.btn-cont:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.5); 
}

.texto-capa {
    position: absolute;
    z-index: 10;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 79.99em) {
    .contato-wrapper {
        top: 17px;
        left: 20px;
        gap: 0.6rem;
    }

    .btn-cont {
        font-size: 0.85rem;      
        padding: 0.5rem 1rem;    
    }
    
    .btn-cont img {
        width: 18px; 
        height: 18px;
    }

    .texto-capa {
        bottom: 20px;
        width: 80%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 0.8rem;
        border-radius: 1rem;
        backdrop-filter: blur(20px);
    }

    .texto-capa h1 {
        font-size: 1.8rem;
        color: #4f0080;
        margin-bottom: 0.5rem;
    }

    .texto-capa .subtitulo {
        font-size: 0.9rem;
        color: #333;
    }
}

@media (width >= 80em) {
    .image-wrapper {
        height: 600px;
    }

    .contato-wrapper {
        top: auto;
        bottom: 50px;
        left: 40px;
    }

    .btn-cont {
        font-size: 1rem;
        padding: 0.8rem 1.8rem; 
    }

    .texto-capa {
        bottom: 60px;
        background: none;
        width: auto;
        padding: 0;
    }

    .texto-capa h1 {
        font-size: 4rem;
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        margin-bottom: 0.5rem;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .texto-capa .subtitulo {
        display: inline-block;
        background-color: #6a0dad;
        color: #fff;
        padding: 0.8rem 2rem;
        border-radius: 2rem;
        font-size: 1.2rem;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
}

/* --- SEÇÃO DE FILTROS --- */
.filters-section {
    margin-top: 3rem; 
}

.filters-title {
    text-align: center;
    font-size: 1.8rem;
    color: #4f0080;
    font-weight: 700;
    margin-bottom: 2rem; /* Aumentado de 1.2rem para 2rem */
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem; /* Gap levemente reduzido para alinhar perfeitamente no celular */
    margin-bottom: 3.5rem;
}

/* Botões com mais presença, fundo levemente branco para destacar do lilás */
.filter-btn {
    padding: 0.6rem 0.2rem; 
    border: 2px solid rgba(151, 78, 203, 0.3);
    background-color: rgba(255, 255, 255, 0.6); 
    color: #4f0080; 
    border-radius: 1.5rem; /* Borda mais suave para botões menores */
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem; /* Fonte menor no mobile para caber textos longos como "Aceitamos encomendas" */
    line-height: 1.2;
    transition: all 0.3s ease;
    font-family: var(--ff-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.filter-btn:hover {
    background: linear-gradient(90deg, #974ecb 0%, #e3197e 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(151, 78, 203, 0.3);
    transform: translateY(-2px);
}

.btn-menor-preco {
    font-weight: 800;
}

.btn-encomendas {
    background-color: #fcf4f8; 
    color: #b54984;
    border-color: #fad3e6;
    font-weight: 800;
}

/* --- GRID DE PRODUTOS --- */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
}

/* --- RESPONSIVIDADE DESKTOP --- */
@media (width >= 80em) {
    .filters-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem; 
        max-width: 1000px;
        margin-inline: auto;
    }

    .filter-btn {
        padding: 0.9rem 2.2rem; /* Botões maiores no desktop */
        font-size: 1.05rem; 
    }

    .btn-menor-preco {
        font-size: 1.15rem; 
        padding: 0.9rem 2.5rem;
    }

    .btn-encomendas {
        flex-basis: 100%; 
        max-width: 700px; /* Mais esticado */
        margin-top: 1rem;
        padding: 1rem 1.5rem; 
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem; /* Gap um pouco maior entre as caixas */
    }
}

