.boxes--bg {
    background-image: url("/images/dotted-arrow-dark-1024x514.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    padding: 5rem .5rem 0 .5rem;
}

.boxes__container {
    margin: 0 auto;
    max-width: 1150px;
    display: flex;
    gap: 1rem;
}

.boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

.box ul {
    list-style-type: disc;
}

.box h2 {
    font-weight: 700;
}


.box:last-child {
    background-color: var(--azul--claro);
    color: white;
}

.boxes__footer {
    margin-top: 5rem;
}

@media screen and (max-width:1000px) {
    .boxes__container {
        max-width: 800px;
        flex-wrap: wrap;
    } 
}

@media screen and (max-width:460px) {
    .boxes {
        display: block;
    }

    .boxes .box {
        margin-bottom: 1rem;
    }
}

