:root {
    --primary: #153973;
    --secondary: #4d4d4d;
}

/* GERAL STYLE */
body {
    font-family: "Roboto", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

/* .row>* {
    padding: 0px;
} */

/* @media only screen and (min-width: 300px) and (max-width: 1060px) {
    .row>* {
        padding: 0;
    }

} */

.botao-toggle-menu {
    margin-right: 16px;
}

.font20 {
    font-size: 20px;
}

.title {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.subTitle {
    font-size: 20px;
}

iframe {
    border-radius: 20px;
    width: 100%;
}

#floating_wpp {
    background-color: #4dc247;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    position: fixed;
    bottom: 21px;
    right: 23px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.fixed_btn {
    transform: scale(0.9);
    transition: transform 0.25s;
}

.justificado {
    text-align: justify;
}

/* HEADER */

.topText {
    background: var(--primary);
    color: #fff;
}

.collapse a {
    color: var(--primary);
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    transition: background-color 0.3s ease;
}

.collapse a:hover {
    background-color: var(--primary);
    border-radius: 5px;
    color: #fff;
}

/* FOOTER */

footer {
    width: 100%;
}

.copyright {
    background-color: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding-block: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    font-size: 1.2rem;
}

.iconSocialMedia {
    font-size: 1.7rem;
}

/* HOME */

/* ESPECIALIDADES */
.card-degrade {
    display: flex;
    align-items: end;
    width: 280px;
    height: 133px;
    position: relative;
    z-index: 1;
}

.cardSpecialties {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 41px;
    width: 280px;
    height: 113px;
    border-radius: 10px;
    box-shadow: 0px 0px 16px 6px #0000000d;
    z-index: 2;
    background: #f8f8f8;
}
.card-degrade:hover {
    cursor: pointer;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #ffc26f -1.32%,
        #f9e0bb 45.19%,
        #c38154 97.89%
    );
}

.escrita-card {
    color: #000;
    font-family: Open Sans Hebrew;
    font-size: 16px;
}

.escrita-card:hover {
    cursor: pointer;
    color: #730000;
    font-size: 17px;
}
/* BLOG */

.titlePost {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.cardPost {
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 16px 6px rgba(0, 0, 0, 0.05);
    border: none;
}

.cardPostInformation {
    border-radius: 10px;
    box-shadow: 0px 0px 16px 6px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.card-body-personalizado:hover {
    border-radius: 10px;
    background: linear-gradient(
        196deg,
        rgba(115, 0, 0, 0) 16%,
        #730000 100.34%
    );
    box-shadow: 0px 0px 16px 6px rgba(0, 0, 0, 0.05);
}

.ancora-post:hover {
    color: #ffffff;
}
/* QUEM SOMOS */

/* COLABORADORES */

.collaborators {
    width: 380px;
    height: 502px;
    position: relative;
    background-image: url(../uploads/blocos/doutor.jpg);
    background-size: cover;

    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

.collaborators::before {
    content: "";
    width: 93%;
    height: 97%;
    border-radius: 10px;
    background: linear-gradient(0deg, #730000 7%, rgba(115, 0, 0, 0) 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.collaborators:hover::before {
    opacity: 1;
}

.collaborators:hover .name {
    display: block;
    z-index: 1;
}

@media only screen and (min-width: 300px) and (max-width: 765px) {
    .div-colaborador {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media only screen and (min-width: 300px) and (max-width: 451px) {
    .div-colaborador {
        display: block;
    }

    .row {
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
    }

    .collaborators {
        width: 310px;
    }
}

.name {
    color: #fff;
    display: none;
    bottom: 40px;
    font-size: 36px;
    text-transform: uppercase;
    font-family: "Abigral", sans-serif;
}

.information {
    border-radius: 10px;
    box-shadow: 0px 0px 16px 6px rgba(0, 0, 0, 0.05);
    font-size: 20px;
}

/* FALE COM UM ESPECIALISTA */
.buttonSpecialties {
    background-color: var(--primary);
    color: #fff;
    border-radius: 100px;
    padding-block: 15px;
    padding-inline: 34px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.3s ease-in-out;
    width: 380px;
    text-align: center;
}

.buttonSpecialties:hover {
    opacity: 0.8;
}

@media only screen and (min-width: 449px) and (max-width: 454px) {
    .buttonSpecialties {
        padding-block: 15px;
        padding-inline: 34px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 448px) {
    .buttonSpecialties {
        padding-block: 14px;
        padding-inline: 12px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 700px) {
    .div-especialidades {
        display: flex;
        justify-content: center;
    }
}

/* AGENDE SUA CONSULTA */

.contact .form-control {
    border: 3px solid var(--primary);
    border-radius: 100px;
    padding-block: 19px;
    padding-left: 20px;
}

.contact .form-control::placeholder {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.contact .textarea {
    border-radius: 30px;
}

.contact button {
    background-color: var(--primary);
    border-radius: 100px;
    padding: 19px 60px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact .checkbox {
    filter: hue-rotate(120deg);
}

.contact small {
    font-weight: 700;
    text-transform: uppercase;
}

.font32 {
    font-size: 32px;
}

.font25 {
    font-size: 25px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HOME */

.bloco {
    background-color: var(--primary);
    padding: 20px;
    padding-left: 0px;
    padding-right: 0px;
    color: #fff;
}

.bloco h5 {
    font-size: 45px;
    font-weight: 800;
}

.bloco p {
    margin-bottom: 0px;
}

.cor {
    color: black;
}

.bola {
    position: relative;
}

.bola::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 26%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50px;
    box-sizing: content-box;
}

/* PÁGINA */

.bloco-white {
    padding: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.bloco-white h4 {
    color: var(--primary);
    font-weight: 800;
}

.image {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.bloco-white .title {
    background-color: var(--primary);
}

.block-gap {
    gap: 105px;
}

.form-gap {
    gap: 120px;
}

/* SERVIÇO */

/* TRABALHE CONOSCO */

.contact .anexo {
    width: 1192px;
}

.curriculo {
    position: relative;
}
.curriculo button {
    background-color: var(--secondary);
    color: #fff;
    border-radius: 0px;
    font-size: 13px;
    position: absolute;
    top: 9px;
    right: 120px;
}

/* BLOG */

.timeline {
    border-top: 2px solid var(--secondary);
    position: relative;
    margin-top: 40px;
    padding-top: 40px;
}

.event {
    position: relative;
    margin-bottom: 20px;
}

.description {
    position: absolute;
    top: -63px;
    left: 10%;
    transform: translateX(-50%);
    width: 240px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.image-container {
    position: relative;
}

.image-container::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 35px;
}

.image-container img {
    border-radius: 35px;
}

.image-container .capa {
    width: 100%;
    height: 100%;
}

.image-container p {
    position: absolute;
    color: #fff;
    top: 18%;
    left: 5%;
    font-size: 35px;
    font-weight: 600;
}

.image-container p .saiba {
    font-size: 18px;
}

.image-container .fundo {
    background-color: transparent;
}

.image-container .title {
    font-size: 30px;
}

.image-container .new {
    position: absolute;
    right: 5%;
    border-radius: 0px;
}

.artigo {
    background-color: var(--primary);
    padding: 15px 15px 10px 15px;
    border-radius: 40px;
    font-size: 18px;
    color: #fff;
}

.image-container .subtitulo {
    font-size: 23px;
}

.image-container:hover .fundo {
    background-color: var(--primary);
    padding: 4px;
}

.image-container .check {
    position: absolute;
    top: -5%;
    right: -3%;
    display: none;
}

.image-container:hover .check {
    display: block;
}

.newsletter {
    position: relative;
    background-color: var(--primary);
    height: 300px;
    font-size: 32px;
    font-weight: 600;
}

.newsletter .texto {
    position: absolute;
    bottom: 30%;
}

.newsletter p {
    font-size: 18px;
    position: absolute;
    color: var(--primary);
    background-color: #fff;
    padding: 20px;
    border-radius: 40px;
}

.newsletter .form-control {
    padding: 20px;
    width: 60%;
    border-radius: 40px;
}

.newsletter .form-control::placeholder {
    font-size: 18px;
    color: var(--primary);
}

.share {
    font-size: 0.5rem;
    color: var(--primary);
}

.caixa {
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7%;
    padding-bottom: 10%;
    margin-bottom: 3.5rem;
}

.caixa p {
    margin-bottom: 0rem;
}

.caixa img {
    width: 3.9rem;
    position: absolute;
    bottom: -2.3rem;
}

.confira .check {
    width: 3rem;
}

.confira::before {
    border-radius: 15px;
}

.confira img {
    border-radius: 15px;
}

.confira .title {
    font-size: 25px;
}

.confira .subtitulo {
    font-size: 18px;
}

/* TELAS MENORES */

@media (max-width: 1253px) {
    body {
        font-size: 17px;
    }

    .font16 {
        font-size: 14px;
    }

    .font20 {
        font-size: 17px;
    }

    .font32 {
        font-size: 29px;
    }

    .icon {
        font-size: 1rem;
    }
}

@media (max-width: 1128px) {
    body {
        font-size: 13px;
    }

    .font16 {
        font-size: 13px;
    }

    .font20 {
        font-size: 13px;
    }

    .font32 {
        font-size: 25px;
    }

    .bloco h5 {
        font-size: 30px;
    }

    .bola::before {
        content: "";
        position: absolute;
        top: 55%;
        left: 26%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 48px;
        border: 1px solid #fff;
        border-radius: 50px;
        box-sizing: content-box;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }

    .icon {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: pre-wrap;
        background-color: inherit;
    }

    .collapse a {
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .bloco {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pb-2 iframe {
        width: 100%;
    }
}
