/* ===== HOME ===== */
/*.home {  
    
}*/

.meu-carrossel {
    width: 100%;
    border-bottom: solid 3px #333;
}

.carousel-item img {
    aspect-ratio: 3/1;
}



.principais-produtos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 3vw 0;
}

.produtos-linha {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 85%;
    height: 25vw;
}

.produto {
    display: flex;
    height: 90.91%;
    background-color: #dbe7ff;
    border-radius: 15px;
    color: #001642;
    transition: all 0.5s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.produto a {
    width: 100%;
    height: 100%;
    font-size: 2.5vw;
    font-family: anton;
    color: #001642;
    text-decoration: none;
    padding: 1vw;
}

.produto:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.152);
}

.grande {
    width: 62.5%;
}

.pequeno {
    width: 30%;
}

.mais {
    background-color: #1e58ca;
}

.mais span {
    color: white
}






@media screen and (max-width: 480px) {
    .principais-produtos{
        width: 100%;
    }

    .produto {
        border-radius: 3px;
    }
}