/*ESTILO Geral*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #000;
    height: 100vh;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

.flex {
    display: flex;
}

.efeito-txt-topo, .efeito-img-topo, .title, .efeitos-especial1, .efeitos-especial2, .efeitos-especial3, .efeitos-especial4, .efeitos-especial5, .efeitos-especial6, .efeitos-especial7, .efeitos-especial8, .efeito-img-sobre, .efeito-txt-sobre, .port1, .port2, .port3  {
    visibility: hidden;
}


.bnt-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #ff0000b4;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

h2.title {
    color: white;
    font-size: 38px;
    text-align: center;

}

h2.title span {
    color: #ff0000;
}

button:hover,
form .btn-enviar input:hover {
    box-shadow: 0px 0px 8px #ff0000;
    transform: scale(1.05);
}

/* Estilo Cabe */
header {
    padding: 40px 4%;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #5f5f5f;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav.desk-top a:hover {
    color: #fff;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav.desk-top ul li {
    display: inline-block;
    padding: 0 40px;
}


header .logo {
    height: auto;
}

/* Estilo MENU MOBILE */

.btn-abrir i {
    color: #ff0000;
    font-size: 40px;
}

.menu-mobile {
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .2s;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}

.menu-mobile .btn-fechar i {
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i {
    color: #ff0000;
    font-size: 30px;
}

.menu-mobile nav ul {
    text-align: right;

}

.menu-mobile nav ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 4%;
    display: block;
}


.menu-mobile nav ul li a:hover {
    background-color: red;
    color: #000;

}

.overlay-menu {
    background-color: rgba(0, 0, 0, 0.671);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* TOPO SITE */

section.topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #fff;
    font-size: 38px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
    color: #ff0000;
    font-size: 50px;
}

.topo-do-site .txt-topo-site p {
    color: #fff;
    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;
    }
}

/* ESTILO DAS ESPECIALIDADES*/
section.especialidades {
    padding: 40px 4%;
}

section.especialidades .flex {
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.especialidades .especialidades-box {
    color: white;
    padding: 40px;
    margin-top: 45px;
    border-radius: 20px;
    transition: .2s;
    text-align: center;
    width: 200px;
    height: 200px;
}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff78;
}


.especialidades .especialidades-box ion-icon {
    font-size: 70px;
    color: #ff0000;

}
.especialidades .especialidades-box img {
    width: 70px;
    height: auto;
    margin-top: 0px;
}
    
.especialidades .especialidades-box i {
    font-size: 70px;
    color: #ff0000;
}

.especialidades .especialidades-box h3 {
    font-size: 20px;
    margin: 15px 0;

}


/* ESTILO DO SOBRE */

section.sobre {
    padding: 80px 4%;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre {
    color: white;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}


.sobre .txt-sobre h2 span {
    color: #ff0000;
    display: block;
}

.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}


.sobre .img-sobre img {
    width: 400px;
    height: 540px;
    border-radius: 5%;
}

/* ESTILO DO PORTFÓLIO */

section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.089);
}

section.portfolio .flex {
    justify-content: space-around;
    margin-top: 60px;
}

.img-port {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 5s;
    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;
}

.img-port a{
    text-align: center;
    text-decoration: none;
    color: #fff;
}

/* ESTILO DO FALA COMIGO */

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: white;
    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: #ff0000;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

/* ESTILO DO RODAPÉ*/


footer {
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.089);
}

footer .flex {
    justify-content: space-between;
    align-items: center;
}

footer .line-footer {
    padding: 20px 0;
}

.borda {
    border-top: 2px solid red;
}

.bnt-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #ff0000;
    font-size: 22px;
    cursor: pointer;
    margin: 0 10px;
    transition: .2s;
}

footer .line-footer p i {
    color: #ff0000;
    font-size: 22px;
}

footer .line-footer p a {
    color: white;
}

