﻿.sistemas {
    margin-inline: auto;
    padding: 0 1rem;
    margin-top: 3.75rem;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sistemas-title h1 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.sistemas-title p {
    font-weight: 400;
    max-width: 25.625rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    font-size: 1.375rem;
}

.sistemas-card-div {
    margin-top: 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0 0.5rem;
}

.sistemas-card{
    width: 11.5625rem;
    height: 10rem;
    border-radius: 0.5rem;
    border: 1px solid #c93d06;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

    .sistemas-card span {
        font-family: Montserrat,sans-serif;
        font-weight: 500;
        font-size: 1.375rem;
        text-align: center;
        max-width: 7.1875rem;
    }

    .sistemas-card img {
        width: 40px;
        height: 40px;
    }

.sistemas-card-bloco {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.bloco1 {
    margin-left: 6.2rem;
}

.bloco2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
    


@media(max-width: 1280px) {
    .sistemas{
        display: block;
    }

    .sistemas-title {
        text-align: center;
    }

    .bloco1 {
        margin-left: 0;
    }
}

@media(max-width: 780px) {

    .sistemas-title h1 {
        font-size: 1.25rem;
    }

    .sistemas-title p {
        font-size: 1.125rem;
    }

    .sistemas-card {
        width: 9.5625rem;
        height: 8rem;
    }

        .sistemas-card span {
            font-size: 1rem;
        }
}

@media(max-width: 540px) {
    .sistemas-card-bloco {
        display: grid;
    }
    
    .sistemas-card-div {
        flex-direction: row;
    }
}

