/* ------ Apresentação------ */

.apresentacao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 27rem;
    background-color: #CCCCCC;
}

.titulo-apresentacao {
    font-size: 2rem;
    color: #333333;
    margin: 0;
    padding: 0;
}

.destaque {
    color: #7a78c2;

}

.texto-apresentacao {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.btn-apresentacao {
    margin-top: 1rem;
}

.btn-agendar1 {
    background-color: #030303;
    color: white;
    border: none;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.btn-agendar1:hover {
    background-color: #ffffff;
    color: #030303;
}

.btn-servicos {
    background-color: #a8a0a0;
    color: white;
    border: none;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.btn-servicos:hover {
    background-color: #ffffff;
    color: #030303;
}

.credenciais {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.item {
    display: flex;
    align-items: center;
}


.foto-apresentacao {
    object-fit: cover;
    width: 22rem;
    height: 17rem;
    border-radius: 5px;
    object-position: top;
    display: block;
    object-fit: cover;
}

/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {

    .apresentacao {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        
    }

    .texto-apresentacao {
        word-break: break-all;
        
    }

    .destaque {
        font-size: 2rem;
    }

    .foto-apresentacao {
        margin-right: 1rem;
    }

    .btn-agendar1 {
        width: 10rem;
        background-color: #030303;
        color: white;
        border: none;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 10px;
        margin: 0px 2px;
        cursor: pointer;
        border-radius: 12px;
    }

    .btn-servicos {
        width: 10rem;
        background-color: #a8a0a0;
        color: white;
        border: none;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 10px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 12px;
    }

    .credenciais {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        margin-right: 4rem;
        gap: 4rem;
        width: 100%;
    }

    .credenciais p {
        font-size: 0.6rem;
    }

}

/* Telas médias (Celulares) */
@media (max-width: 490px) {

    .apresentacao {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .titulo-apresentacao {
        font-size: 1.5rem;
        line-height: 1.2;
       margin-bottom: 0.5rem;
    }

    .destaque {
        font-size: 1.5rem;
    }

    .texto-apresentacao {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center-between;
        margin-top: 3rem;
        width: 100%;
    }

    .p-apresentacao{
        width: 90%; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        margin-left: 1.5rem;
    }


    .foto-apresentacao {
        width: 13rem;
        height: 11rem;
        display: block;
    }

    p {
        font-size: x-small;
    }

    .btn-agendar1 {
        display: none;
    }

    .btn-servicos {
        display: none;
    }

    .credenciais {
        margin-bottom: 1.5rem;
        margin-left: 3rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;

    }

    .credenciais p {
        font-size: xx-small;
    }
}