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

html { scroll-behavior: smooth; }

body {
    font-family: "Luxurious Roman", serif;
    line-height: 1.5;
}


nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    position: sticky;
    top: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo { display: flex; font-size: 10px; }

.ltipo, .ltipo1 {
    padding: 3px;
    color: white;
    background: rgb(18,184,148);
    border-radius: 5px;
    font-size: 19px;
    margin-right: 6px;
}

.ltipo { width: 35px; height: 28px; text-align: center; }
.ltipo1 {
    width: 35px;
    height: 35px;
    margin-top: 8px;
    display: flex;
}

.telefone, .msg {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.telefone { margin-top: 7px; }

.numero {
    font-size: 18px;
    margin-top: 5px;
    color: rgb(12,146,117);
}


.contato,
.ajuda,
.enviar {
    background: rgb(18,184,148);
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.2s;
    margin-left: 5px;
}

.contato { width: 75px; padding: 7px; }
.ajuda { width: 120px; padding: 8px; margin-top: 15px; }
.enviar {
    width: 390px;
    height: 40px;
    margin-top: 10px;
    background: rgb(13,151,121);
    border-radius: 10px;
}

.contato:active,
.ajuda:active,
.enviar:active {
    transform: scale(0.97);
}


section {
    background: rgb(217,251,244);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.texto1 { font-size: 50px; line-height: 1.6; }
.texto2 { line-height: 1.6; }


article {
    display: flex;
    min-height: 100vh;
    gap: 20px;
    justify-content: center;
}

.servicos {
    border: 1px solid rgb(150,140,131);
    width: 300px;
    height: 250px;
    border-radius: 15px;
    margin: 5px;
    padding: 30px;
    text-align: center;
    transition: 1s;
}

.servicos:hover {
    border-color: rgb(18,184,148);
    transform: scale(0.97);
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    line-height: 1.6;
}

article img {
    height: 70px;
    width: 70px;
}

.titulo { font-weight: bolder; }
.descricao { font-size: 15px; }

form {
    border: 1px solid rgb(150,140,131);
    max-width: 550px;
    width: 90%;
    height: 300px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.37);
}

input,
textarea {
    width: 390px;
    border-radius: 10px;
    border: 1px solid rgb(150,140,131);
    margin-bottom: 7px;
}

input { height: 38px; }
textarea { height: 110px; }

.Contato-titulos,
.ligue { margin-bottom: 10px; }

.ligue { font-size: 15px; }

img {
    max-width: 100%;
    height: auto;
}


footer {
    background: rgb(21,22,36);
    height: 250px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}

.infor,
.ctt {
    display: flex;
    flex-direction: column;
}

.ctt { gap: 2px; }

.ctt .numero,
.Atendimento .numero {
    font-size: 20px;
}

.Atendimento {
    width: 218px;
    height: 72px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}

.descri { width: 176px; }

.top1,
.email,
.telefonebox {
    display: flex;
}

.email { gap: 3px; }
.telefonebox { align-items: center; gap: 8px; }


.sobre-nos {
    height: 100vh;
    display: flex;
    flex-direction: row;
    gap: 20px;
    background: white;
}

.img-clinica { height: 359px; }
.sobre { width: 600px; }


.fotos {
    height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: white;
}

.fotos div {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fotos img { height: 60%; }

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

@media (max-width:768px) {

    nav {
        flex-direction: column;
        height: auto;
        gap: 10px;
        text-align: center;
    }

    .logo { justify-content: center; }

    section {
        padding: 20px;
        text-align: center;
    }

    .texto1 { font-size: 32px; }
    .texto2 { font-size: 16px; }

    article {
        flex-direction: column;
        align-items: center;
    }

    .servicos,
    form,
    input,
    textarea,
    .enviar {
        width: 90%;
    }

    footer {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }

    .ctt,
    .infor { align-items: center; }

    .top1 { justify-content: center; }

    .descri { width: 90%; }

    .top p { text-align: center; }

    .sobre-nos {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .img-clinica {
        width: 100%;
        height: auto;
    }

    .sobre { width: 100%; }
}


