/* ESTILIZAÇÃO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    background-color: black;
    height: 100vh;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.btn-contato button {
    background-color: #FF4500;
    font-size: 18px;
    font-weight: 600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.btn-contato button:hover {
    background-color: #FF6347;
    box-shadow: 0px 0px 8px #FF6347;
    transform: scale(1.05);
}

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

h2.titulo span {
    color: #FF4500;
}

/* HEADER */
header {
    padding: 40px 4%;
}

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

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

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

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

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

header .logo {
    font-size: 40px;
    font-weight: 700;
}

/* MENU MOBILE */
.btn-abrir-menu i {
    color: #FF4500;
    font-size: 40px;
}

.menu-mobile {
    background-color: black;
    height: 200vh;
    position: fixed;
    top: 0;
    right: -100%; /* Escondido fora da tela */
    z-index: 99999;
    width: 70%;
    overflow: hidden;
    transition: right .5s;
}

.menu-mobile.abrir-menu {
    right: 0; /* Visível na tela */
}

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

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

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

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

.menu-mobile nav ul li a:hover {
    background-color: #FF4500;
    color: #000000;
    transition: .2s;
}

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

/* TOPO DO SITE */
section.topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site .flex {
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.topo-do-site .txt-topo-site h1 {
    color: white;
    font-size: 38px;
    line-height: 35px;
}

.topo-do-site .txt-topo-site h1 span {
    color: #FF4500;
}

.topo-do-site .txt-topo-site p {
    color: #ffffff;
    font-size: 18px;
    margin: 40px 0;
}

.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;
    }
}

/* ESPECIALIDADES */
section.especialidades {
    padding: 40px 4%;
    margin-top: 100px;
    box-shadow: 0px 0px 40px 10px #ffffff13;
}

.especialidades .flex {
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.especialidades .especialidades-box {
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 45px;
}

.especialidades .especialidades-box:hover {
    box-shadow: 0px 0px 20px #ffffff;
    transform: scale(1.05);
    transition: .2s;
}

.especialidades .especialidades-box i {
    font-size: 70px;
    color: #ff4500;
}

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

/* SOBRE */
section.sobre {
    padding: 40px 4%;
    box-shadow: 0px 0px 40px 10px #ffffff13;
}

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

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

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

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

.sobre .txt-sobre p {
    font-size: 15px;
    margin: 15px 0;
    text-align: justify;
}

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

.btn-social button:hover {
    background-color: #FF6347;
    box-shadow: 0px 0px 8px #FF6347;
    transform: scale(1.05);
    transition: .2s;
}

/* MEU PORTIFÓLIO */
section.portifolio {
    padding: 80px 4%;
    box-shadow: 0px 0px 40px 10px #ffffff13;
}

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

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

section.portifolio .flex {
    gap: 60px;
    align-items: center;
    justify-content: space-around;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ff440076;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 600;
    color: white;
    opacity: 0;
}

.overlay:hover {
    opacity: 1;
    transition: .5s;
}

/* CONTATO */
section.formulario {
    padding: 80px 4%;
    box-shadow: 0px 0px 40px 10px #ffffff13;
}

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

form input,
form textarea {
    width: 100%;
    background-color: #242424;
    border: none;
    outline: none;
    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[type="submit"] {
    background-color: #FF4500;
    font-size: 18px;
    width: 120px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
}

form .btn-enviar input[type="submit"]:hover {
    background-color: #FF6347;
    box-shadow: 0px 0px 8px #FF6347;
    transform: scale(1.05);
    transition: .2s;
}

/* FOOTER */
footer {
    box-shadow: 0px 0px 40px 10px #ffffff13;
    padding: 60px 4%;
}

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

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

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

footer .line-footer p a {
    color: #ffffff;
    margin-left: 10px;
    font-size: 15px;
}

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

footer a {
    font-size: 40px;
    font-weight: 700;
    color: #7d7d7d;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

footer a:hover {
    color: #FF4500;
    transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1090px) {
    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }

    h2.titulo {
        line-height: 34px;
        font-size: 30px;
    }

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

    /* TOPO DO SITE */
    section.topo-do-site .flex {
        gap: 40px;
    }

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

    .topo-do-site .txt-topo-site h1 {
        font-size: 28px;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
        
    }

    /* ESPECIALIDADES */
    section.especialidades {
        padding: 40px 8%;
    }

    /* SOBRE */
    section.sobre {
        padding: 40px 8%;
    }

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

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

    .img-port {
        width: 100%;
        height: 400px;
        position: relative;
    }

    /* PORTIFÓLIO */
    section.portifolio {
        padding: 80px 8%;
    }

    /* FOOTER */
    footer .flex {
        flex-direction: column;
        gap: 35px;
    }

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