.dores {
    max-width: 1240px;
    margin: auto;
}

.titulo_dores {
    text-align: center;
    color: #335C77;
    margin-bottom: 35px;
}

.titulo_dores h1{
    font-size: 75px;
    margin-bottom: 10px;
}

.titulo_dores h2 {
    font-size: 28px;
    font-weight: normal;
}

.conj_cards_dores {
    display: grid;
    grid-template-columns: repeat(2, 510px);
    grid-template-rows: repeat(2, 310px);
    gap: 70px;
    justify-content: center;
}

.card_dor {
    background-color: #335C77;
    color: #f2f2f2;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card_dor:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.img_dor {
    padding: 15px;
    border-radius: 100%;
    background-color: #f2f2f2;
    margin-right: 20px;
}

.img_dor img {
    width: 50px;
}

.titulo_card_dor {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.titulo_card_dor h1 {
    font-size: 28px;
}

.card_dor p {
    font-size: 22px;
}

.dados_dores {
    background-color: #335C77;margin-top: 75px;
}

.alinha_dores {
    max-width: 1240px;
    ;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: auto;
    color: #9EC1D7;
    padding: 35px 0;
}

.destaque_dados_dores {
    color: #f2f2f2;
    font-size: 28px;
    font-weight: bold
}

.dados_dores p {
    width: 45%;
    font-size: 22px;
}

@media (max-width: 680px) {
    .dores {
        max-width: 378px;
    }

    .dados_dores {
        display: none;
    }

    .titulo_dores h1{
        font-size: 30px;
    }

    .titulo_dores h2 {
        font-size: 16px;
    }

    .conj_cards_dores {
        grid-template-columns: auto;
        grid-template-rows: repeat(4, 1fr);
        gap: 9px;
    }

    .card_dor {
        padding: 8px;
        width: 95%;
        margin: auto;
    }

    .img_dor {
        padding: 6px;
        margin-right: 15px;
    }

    .img_dor img {
        width: 20px;
    }

    .titulo_card_dor {
        margin-bottom: 10px;
    }

    .titulo_card_dor h1 {
        font-size: 16px;
    }

    .card_dor p {
        font-size: 12px;
    }
}

