.agendar-consulta{
    height: 400px;
    width: 100%;
    padding: 40px;
    background-image: url('../img/example-atendimento.jpg');
    background-size: cover;
    background-position: bottom;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.agendar-consulta .black-overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 400px;
    background: #333;
    opacity: 85%;
    z-index: 1;
}

.agendar-consulta h1{
    color: white;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    margin: 20px;
}

.agendar-consulta p{
    color: white;
    z-index: 2;
    font-size: 18px;
    font-weight: 300;
    margin: 10px 0px;
    text-align: justify;
}

.agendar-consulta .whatsapp{
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #8ab19e;
    background: #8ab19e;
    color: white;
    height: fit-content;
    border-radius: 40px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 2;
    margin: 40px 0px;
}

.agendar-consulta .whatsapp i{
    margin-right: 8px;
    margin-left: 0px;
}

.agendar-consulta .whatsapp:hover{    
    border: 1px solid #7baf96;
    background: #7baf96;
    color: white;
}

@media only screen and (max-width: 900px){

}