@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*ESTILO GERAL*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: black;
    padding: 0;

}

.interface {
    max-width: 1700px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.btn-contato button {
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 700;
    background-color: #0259a5;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
}

button:hover {
    box-shadow: 0px 0px 10px #0259a5;
    transform: scale(1.05);
}

h2.titulo {
    color: #fff;
    font-size: 38px;
    text-align: center;
}

h2.titulo span {
    color: #0259a5;
}


/*ESTILO DO CABEÇALHO*/

header {
    padding: 10px 4%;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #868686;
    text-decoration: none;
    font-size: 25px;
    display: inline-block;
    transition: .2s;
}

header a:hover {
    color: #fff;
    transform: scale(1.05);
}

header nav ul li {
    list-style-type: none;

}

header nav ul li {
    display: inline-block;
    padding: 0 40px;
}


header a img {
    width: 250px;
    height: auto;
}


/*ESTILO DO TOPO*/

.topo-do-site .img-topo img {
    width: 600px;
    height: auto;
}


section.topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site .txt-topo h1 {
    color: #fff;
    font-size: 42px;
    line-height: 50px;
}


.topo-do-site .txt-topo h1 span {
    color: #0259a5;
    font-size: 60px;
}

.topo-do-site .txt-topo p {
    color: #fff;
    margin: 40px 0px;
    font-size: 30px;
}

.topo-do-site .img-topo 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%;
    background-color: #0c0c0c;
}

section.especialidades .flex {
    gap: 60px;
}

.especialidades .especialidades-box {
    color: #fff;
    padding: 40px;
    border: 2px solid #fff;
    margin-top: 45px;
    border-radius: 20px;
    transition: .2s;
}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff73;
}

.especialidades .especialidades-box i {
    font-size: 70px;
    color: #0259a5;

}

.especialidades .especialidades-box h3 {
    font-size: 26px;
    margin: 15px 0;
}

/*SOBRE */

section.sobre {
    padding: 40px 4%;
    text-align: start;
}

section.sobre .flex {
    align-items: center;
    gap: 300px;
}

.sobre .txt-sobre {
    color: #fff;
}

.sobre .txt-sobre h2 {
    font-size: 45px;
    padding-bottom: 40px;
    line-height: 40px;
}

.sobre .txt-sobre h2 span {
    color: #0259a5;
    display: block;
}

.sobre .txt-sobre p {
    font-size: 20px;
    margin: 20px 0;
    text-align: justify;
}


.sobre .txt-sobre p span {
    color: rgb(255, 255, 255);
    font-size: 25px;
}

.sobre .txt-sobre p span:hover {
    color: #0259a5;
    font-size: 26px;
    transition: .4s;
    cursor: pointer;
}


.sobre .txt-icone button {
    flex-direction: row;
    width: 55px;
    height: 55px;
    border-radius: 27.5px;
    border: none;
    color: #fff;
    font-size: 30px;
    margin: 20px 60px;
    transition: .2s;
    cursor: pointer;
    background-color: #0259a5;
}

/*PORTIFOLIO */

section.projetos {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #333333;
}

section.projetos .flex {
    justify-content: space-around;
}

.img-port {
    margin-top: 50px;
    width: 360px;
    height: 460px;
    background-color: #0259a5;
    border-radius: 30px;
}


.loading {
    display: flex;
    justify-content: center;
    padding: 230px 4%;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* Formulario */


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: #363636;
    border: none;
    outline: none;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
}

form textarea {
    resize: none;
    min-height: 150px;
    max-height: 400px;
    width: 100%;
}

form .btn-enviar {
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    background-color:#0259a5;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

form .btn-enviar input:hover{
    width: 125px;
    background-color: #0259a593;
}


/*FOOTER*/

footer {
    background-color: #0c0c0c;
    border-bottom: 2px solid #0259a5;
}

footer .line-footer {
    padding: 40px 4%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.line-footer p {
    color: #fff;
}

.line-footer p span {
    color: #0259a5;
}


@media screen and (max-width: 1240px) {

    .flex {
        flex-direction: column;
    }

    .topo-do-site .flex {
        flex-direction: column-reverse;
    }

    .menu-desktop,
    .btn-contato {
        display: none;
    }

    .topo-do-site .img-topo img {
        width: 350px;
    }

    header a img {
        width: 150px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site .txt-topo h1 {
        font-size: 30px;

    }

    section.topo-do-site .flex {
        gap: 40px;
    }

    .topo-do-site .txt-topo p {
        font-size: 18px;
    }

    section.especialidades {
        padding: 10px 8%;
        padding-bottom: 30px;
        padding-top: 30px;
    }


    .especialidades .especialidades-box {
        padding: 40px;
        margin-top: 0px;
    }

    h2.titulo {
        font-size: 34px;
        line-height: 30px;
        padding-bottom: 30px;
    }

    section.sobre {
        padding: 40px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 30px;
        padding-bottom: 10px;
        text-align: center;
    }

    .sobre .txt-sobre p {
        font-size: 18px;
        margin: 20px 0;
    }

    .sobre .txt-sobre p span {
        font-size: 22px;
    }

    .sobre .txt-icone button {
        width: 60px;
        height: 60px;
        margin: 0px;
        padding: 0px;
    }

    section.sobre .flex {
        align-items: center;
        gap: 45px;
        padding-bottom: 20px;
    }

    .img-port {

        margin-top: 30px;
        width: 300px;
        height: 400px;
    }

    section.projetos .flex {
        align-items: center;
    }

    section.formulario {
        padding: 40px 4%;
    }

    form .btn-enviar input {
        width: 200px;
        font-weight: 400;
        font-size: 20px;
    }

    .line-footer p {
        text-align: center;
    }

    .sobre .txt-sobre h2 {
    line-height: 30px;
}

}