
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }

body {
    background-color: #ffffff;
}

body > *:not(header):not(footer):not(#hero):not(#lead-form-container) {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.recentes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.recentes h1{
    text-align: center;
    padding-bottom: 10px;
    padding-top: 30px;
    font-family: 'Arial', sans-serif;
    color: #1a365d;
}

#latest-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.preco{
    margin-top: 5px;
    font-family: 'Ysabeau Infant', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.description {
    margin-top: 1rem;
    font-size: 16px;
    font-family: 'Ysabeau Infant', sans-serif;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.mySlides {
    display: none;
    transition: opacity 1s ease-in-out;
}

.mySlides img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 500px) {
    

    #latest-cards-container {
        flex-direction: column;
    }
}