/* CONFIGS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --color01: #4D7198;
    --color02: #3A6187;
    --color03: #275276;
    --color04: #134265;
    --color05: #003254;
    --font01: 16px;
    --font02: 20px;
    --font03: 24px;
}

/* MAIN */
#content_insurance {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#content_insurance ul li {
    margin-top: 10px;
    margin-left: 23px;
    text-align: justify;
}

#title_insurance {
    font-size: 40px;
    margin: 35px auto 0px auto;
}

#button_simulation {
    width: 80%;
    margin: 25px auto 0 auto;
    display: flex;
    justify-content: center;
}

#button_simulation a button {
    background-color: var(--color03);
    color: white;
    width: 215px;
    padding: 20px;
    border: 1px solid white;
    box-shadow: 4px 4px 10px black;
    border-radius: 20px;
    font-size: var(--font03);
}

#button_simulation a button:hover {
    background-color: var(--color01);
    cursor: pointer;
}

#text_area {
    width: 80%;
    margin: 25px auto 0 auto;
    height: 50%;
    font-size: var(--font03);
}

#text_area p {
    text-align: justify;
}

#img_and_text {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

#img_and_text p {
    word-spacing: 8px;
    line-height: 1.5;
    text-align: justify;
}

#img_and_text img {
    width: 700px;
}

#last_text, #text_area p{
    margin-top: 15px;
}

/* RESPONSIVIDADE */
/* Tablet e celular */
@Media (max-width: 1463px) {
    /* Ajustando imagem e texto que ficavam um ao lado do outro */
    #img_and_text {
        display: block;
        width: 100%;
    }

    #img_and_text img {
        width: 100%;
    }

    #img_and_text p {
        line-height: normal;
        word-spacing: 0;
    }
}
