.welcome-message {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-message h1 {
    color: #252A36;
    font-weight: normal;
    font-size: 1.5rem;
}

#carouselExampleIndicators {
    width: 75vw;
    margin: 1vh auto auto;
}

.carousel-inner {
    border-radius: 3rem;
}

.imgs-menores {
    width: 75vw;
}

.carousel-control-prev-icon {
    width: 5vw;
    height: 5vw;
    background-size: 5vw;
}

.carousel-control-next-icon {
    width: 5vw;
    height: 5vw;
    background-size: 5vw;
}

.produtos-secao {
    position: relative;
    width: 80vw;
    min-height: 400px; /* Altura mínima em vez de fixa */
    margin: 2vh auto;
    padding: 1rem 0;
}

#subtitulo {
    width: 80vw;
    color: #252A36;
    border-bottom: 2px solid #252A36;
    margin: 0 auto 1rem auto; /* Margem consistente */
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

.produtos-container {
    width: 80vw; /* Largura ajustada */
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.produtos-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.produto-card {
    flex: 0 0 calc((100% - 90px) / 4); /* 4 cards por linha */
    box-sizing: border-box;
    border-radius: 8px;
    padding: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 350px;
    position: relative;

    & img {
        width: 100%;
        height: auto;
        object-fit: cover; /* Mantém proporção */
        aspect-ratio: 1 / 1;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    & h3 {
        color: #252A36;
        margin: 0.5rem 0;
        font-weight: normal;
        font-size: 1.4rem;
        line-height: 1.3;
        flex-grow: 1; /* Ocupa espaço disponível */
    }

    & button {
        width: 80%;
        height: 0;
        opacity: 0;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #252A36;
        border: none;
        margin: 0.5rem auto 0 auto;
        overflow: hidden;

        & p {
            color: #fff;
            font-size: 0;
            margin: 0;
            transition: font-size 0.3s ease;
        }
    }
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    & button {
        height: 40px;
        opacity: 1;
        
        & p {
            font-size: clamp(0.6rem, 1.5vw, 0.9rem);
        }
    }
}

.produtos-btn {
    width: 50px;
    height: 50px;
    background: #00000080;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
}

.produtos-btn:hover {
    background: #000000b3;
    transform: translateY(-50%) scale(1.1);
}

.produtos-btn.prev {
    left: -3rem;
}

.produtos-btn.next {
    right: -3rem;
}

.preco {
    font-size: 1.3rem;
    color: #252A36;
    font-weight: bold;
    margin: 0.5rem 0;
}

.vendas {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    width: 100%;
    grid-column: 1 / -1;

    & h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #252A36;
        font-weight: normal;
    }

    &  p {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 400px;
        margin: 0 auto;
    }
}

.produtos-track:has(.empty) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

@media (max-width: 992px) {
    #carouselExampleIndicators {
        width: 100vw;
        margin: 0 auto;

        & button {
            width: 20px;
        }
    }

    .carousel-indicators {
        margin-bottom: 0;
    }

    .carousel-inner {
        border-radius: 0rem;
    }

    .imgs-menores {
        width: 100vw;
        height: auto;
        border-radius: 0;
    }
    
    .carousel-control-prev-icon {
        width: 7vw;
        height: 7vw;
        background-size: 7vw;
    }

    .carousel-control-next-icon {
        width: 7vw;
        height: 7vw;
        background-size: 7vw;
    }

    .produtos-secao {
        margin: 0 auto;
    }

    #subtitulo {
        font-size: 1.5rem;
    }

    .produtos-container {
        width: 100%;
        padding: 0 5px;
    }

    .produtos-track {
        width: 100%;
        gap: 10px;
        margin: 1rem 0;
        scroll-behavior: smooth;
        display: flex;
    }

    .produto-card {
        flex: 0 0 calc(50% - 5px); /* 2 cards em mobile */
        min-height: 200px;
        padding: .7rem;
        box-sizing: border-box;
        flex-shrink: 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }
    
    .produtos-btn {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .produtos-btn.prev {
        left: -1.5rem;
    }

    .produtos-btn.next {
        right: -1.5rem;
    }

    .empty {
        padding: 2rem 1rem;

        & h2 {
            font-size: 1.3rem;
        }

        & p {
            font-size: 1rem;
        }
    }

    #footer_tela_principal {
        position: relative;
    }
}