
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;


}

body {
    background-color: #000;
    height: 100vh;


}

html {
    scroll-behavior: smooth;
}

body, html {
    overflow-x: hidden; /* Impede o desbordamento horizontal */
  }

.interface {
    max-width: 1250px;
    margin: auto;

}

.flex {
    display: flex;
}

h2.titulo {
    color: #fff;
    font-size: 38px;
    text-align: center;
}


button:hover, form .btn-enviar input:hover {
    box-shadow: 0px 0px 8px #05ddec;
    transform: scale(1.05);
   
  
}

h2.titulo span {
    color: aqua;
}

header {
    padding: 5px 4%;

}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #5c5c5c;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav.menu-desktop a:hover {
    color: #0ed9f0;
    transform: scale(1.05);

}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
}


.btn-abrir-menu {
    display: none;
}

.btn-abrir-menu i {
    color: #1bb1d6e3;
    font-size: 40px;
}

.menu-mobile {
    background-color: #e3ececb9;
    height: 65vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
}

.menu-mobile.abrir-menu {
    width: 55%;
}

.menu-mobile.abrir-menu~.overlay-menu{
    display: block;
}


.menu-mobile .btn-fechar {
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i {
    color: #000000;
    font-size: 30px;
}

.menu-mobile nav ul {
    text-align: right;
}

.menu-mobile nav ul li a {
    color: #292626;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 18%;
    display: block;
}

.menu-mobile nav ul li a:hover {
    background-color: #00ddec;
    color: #000;
}

.overlay-menu {
    background-color: #111010a8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}


section.topo-do-site {
    padding: 40px 4%;
    padding-top: 90px;



}

section.topo-do-site .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.topo-do-site h1 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    max-width: 100%;
}

.topo-do-site .txt-topo-do-site h1 span {
    color: aqua;
    max-width: 50%;

}

.topo-do-site .txt-topo-do-site p {
    color: #fff;
    font-size: 20px;
    max-width: 100%;
    text-align: justify;
}

.img-topo-site {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

section.topo-do-site img {
    max-width: 500px;
    height: auto;
    display: flex;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 40px;

}

.txt-topo-do-site {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0px 100px;
    gap: 100px;

}

.texto {
    min-width: 200px;
}

.btn-contato button {
    padding: 10px 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: #05d8fd;
    border: 2px solid #12dbff;
    margin-top: 20px;
    transition: 2s;
    border-radius: 30px;
    cursor: pointer;

}


.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;

}

@keyframes flutuar {
    0% {
        top: 0;

    }

    100% {
        top: 30px;
    }
}


section.especialidades {
    padding: 40px 4%;

}

section.especialidades .flex {
    gap: 60px;
    margin-top: 20px;


}

.especialidades .especialidades-box {
    color: #fff;
    padding: 40px;
    border-radius: 28px;
    margin-top: 10px;
    margin-right: 25px;
    margin-top: 20px;
    transition: .2s;

}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #5c5c5c;
}



.especialidades .especialidades-box i {
    font-size: 70px;
    color: #12dbff;
    margin-top: 20px;

}

.especialidades .especialidades-box h3 {
    font-size: 28px;
    color: antiquewhite;

}

section.sobre img {
    border-radius: 40px;

}

section.sobre {
    padding: 40px 15%;
    margin-top: 260PX;
    margin-bottom: 240px;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre {
    color: #fff;

}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
    margin: 20px;


}

.sobre .txt-sobre h3 {
    margin: 20px;
    color: aqua;
}

.sobre .txt-sobre h2 span {
    color: aqua;
    display: block;

}

.sobre .txt-sobre p {
    margin: 20px;
    text-align: justify;
}

.sobre .txt-sobre .btn-social {
    display: flex;
    justify-content: flex-end;
    gap: 5px;

}

.sobre .txt-sobre .btn-social {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-right: 16px;
}

.btn-social button {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    border: none;
    background-color: aqua;
    font-size: 20px;
    cursor: pointer;
    transition: .2s;
    margin: 0px;

}

section.portifolio {
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
    margin-bottom: 30px;

}

section.portifolio .flex {
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 130px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}

.img-port:hover {
    background-position: 100% 100%;
}

section.formulario {
    padding: 80px 4%;

}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

}

form input, form textarea {
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 10px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
}


form textarea {
    resize: none;
    max-height: 200px;

}

form .btn-enviar {
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    background-color: #17bdbd;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

footer {
    padding: 5px 0;
    box-shadow: 0 0 40px 10px #ffffff1d;


}

footer .flex {
    justify-content: space-between;

}

footer .line-footer {
    padding: 20px 0;

}

.borda {
    border-top: 2px solid #12dbff;
}

footer .line-footer p i {
    color: #12dbff;
    font-size: 22px;

}

footer .line-footer p a {
    color: #fff;

}

@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

section.especiliadades {
    padding: 40px 4%;
}

section.especiliadades .flex {
    gap: 60px;
}

.especiliadades .especialidades-box {
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}

.especiliadades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff78;
}

.especiliadades .especialidades-box i {
    font-size: 70px;
    color: #2cd2d8;
}

.especiliadades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

section.sobre {
    padding: 80px 4%;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre {
    color: #fff;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre h2 span {
    color: #12dbff;
    display: block;
}

.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}

.btn-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #32e3e9;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

section.portfolio .flex {
    justify-content: space-around;
    margin-top: 60px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}

.img-port:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: .5s;
}

.overlay:hover {
    opacity: 1;
}
section.formulario {
    padding: 80px 4%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input,
form textarea {
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
}

form textarea {
    resize: none;
    max-height: 200px;
}

form .btn-enviar {
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    background-color: #12dbff;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

footer {
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

footer .flex {
    justify-content: space-between;
}

footer .line-footer {
    padding: 20px 0;
}

.borda {
    border-top: 2px solid #0edceb;
}

footer .line-footer p i {
    color: #10e4f3;
    font-size: 22px;
}

footer .line-footer p a {
    color: #fff;
}

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

    .flex {
        flex-direction: column;
    }

    h2.titulo {
        font-size: 40px;
        line-height: 80px;
        margin: 10px;
        padding: 10px;

    }

    .menu-desktop,.btn-contato {
        display: none;
   
    }

    section.topo-do-site .flex {
        gap: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site h1 {
        font-size: 52px;
        line-height: 40px;

        padding: 10px;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
    }
    section.especiliadades {
        padding: 40px 8%;
    }

    section.sobre {
        padding: 80px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 34px;
        line-height: 35px;
        text-align: center;
    }

    .btn-social {
        text-align: center;
    }

    .img-sobre img {
        width: 100%;
    }

    section.portfolio {
        padding: 80px 18%;
    }

    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        
    }

    section.portfolio .flex {
        gap: 60px;
    }

    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer {
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .menu-mobile {
        display: none; 
    }
    .btn-abrir-menu {
        display: none; 
    }
    .menu-desktop {
        display: block; 
    }
}

@media screen and (max-width: 1024px) {
    .menu-desktop {
        display: none; 
    }
    .btn-abrir-menu {
        display: block; 
    }
    .menu-mobile {
        display: block; 
    }
}