/* CONFIGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color01: #4D7198;
    --color02: #3A6187;
    --color03: #275276;
    --color04: #134265;
    --color05: #003254;
    --font01: 16px;
    --font02: 20px;
    --font03: 24px;
}

/* MAIN */
main {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#title_assist {
    margin: 35px auto 15px auto;
    font-size: 40px;
}

#cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    justify-content: space-between;
}

.card_insurances {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card_insurances h1 {
    font-size: var(--font03);
}

.content_card {
    display: flex;
    width: 100%;
    gap: 5px;
    align-items: center;
    padding: 10px;
    background-color: var(--color03);
    color: white;
    border-radius: 10px;
}

.content_card img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    /* object-fit: cover; */
}

.card_phones {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: var(--font02);
}

/* RESPONSIVIDADE */
/* Celular */
@media (max-width: 600px) {
    main {
        width: 90%;
    }

    #cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .card_phones {
        gap: 5px;   
    }

    #title_assist {
        text-align: center;
    }
}