/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f0f;
    height:100vh;
}

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

.flex {
    display: flex;
}

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

h2.titulo {
    color: #5c5c5c;
    font-size: 38px;
    text-align: center;
    font-weight: 300;
}

h2.titulo span {
    color: #a34d07;
}

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

/* ESTILO DO CABEÇALHO */
header {
    background-color:#131314;
    border:1px solid #1b1b1c;
    opacity: 0.9;
    padding: 4px 4%;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index:1;
    width: 100%;
}

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: #a34d07;
    transform: scale(1.05);
    cursor:pointer;
}

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

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

/* ESTILO DO MENU MOBILE */

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

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

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

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

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


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

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

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

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

.menu-mobile nav ul li a:hover{
    background-color:#242424;
    color:#a34d07;
}

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

.icones-tech i{
    font-size:10px;
    color:#a34d07;
    font-weight: 300;
    border: 0;
    cursor: pointer;
    transition: .2s;
    margin:10px 10px;
    text-decoration: none;
 
}

.icones-tech a{
    text-decoration: none;
}

.icone-especialidades i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color:#a34d07;
    font-size: 70px;
    cursor: pointer;
    margin: 0px 30px;
    margin-top:20px;
    transition: .2s;
}

.icone-especialidades{
    position:relative;
    margin-bottom: 100px;
    margin-right: 30px;
    animation: flutuar 2s ease-in-out infinite alternate;
}

.btn-especialidades button{
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #a34d07;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
    margin-top:15px;
}


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

    100% {
        top: 30px;
    }
}



/* ESTILO DO SOBRE */
section.sobre {
    padding: 40px;
}

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

.sobre .txt-sobre {
    color: #5c5c5c;
    padding-top: 35px;
}

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

.sobre .txt-sobre  span {
   color: #a34d07;
   display: block;
   font-weight: 200;
 
    
}


.sobre .txt-sobre q{
    font-weight: 400;
    font-size: 20px;
    color:#a34d07;
}
.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}

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

.btn-sobre button{
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #a34d07;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
    margin-top:15px;
}

.sobre .img-sobre img {
    position:relative;
    margin-bottom: 100px;
    margin-right: 70px;
    animation: flutuar 2s ease-in-out infinite alternate;
}


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

    100% {
        top: 30px;
    }
}
/* ESTILO DO PORTFÓLIO */
section.portfolio {
    padding: 20px 2%;
    box-shadow: 0 0 2px 3px #a34d07;
}

section.portfolio .flex {
    justify-content: space-around;
    


}

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

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

.overlay {
    margin-top: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    background-color: #19191a;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color:#a34d07;
    opacity: 0.6;

}

.overlay:hover {
    transform: scale(1.05);
    color: #a34d07;
    border:1px solid #a34d07;


}



/* ESTILO DO RODAPÉ */

footer {
    padding: 10px 4%;
    border-top: 2px solid #a34d07;
}

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


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

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

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

footer .line-footer p{
    color:#a34d07 ;
    text-align: center;
}



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

    .topo-do-site .flex {
        flex-direction: column-reverse;
    }

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

    /* CABEÇALHO */
    .menu-desktop,
    .btn-contato {
        display: none;
    }

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

    header > .interface h2 {  
        margin-left: 40%;
        text-align: center;
    }

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

    /* RODAPÉ */
    footer .flex {
        flex-wrap: wrap; /* Permitir que os itens se ajustem na linha */
        justify-content: center; /* Centralizar os ícones */
        gap: 10px; /* Espaçamento entre os ícones */
    }

    footer .line-footer {
        text-align: center;
    }
    
    .btn-social button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background-color: #a34d07;
        font-size: 18px;
        cursor: pointer;
        margin: 0 5px;
        transition: .2s;
    }
}


.custom-list .custom-list-item{
    color: #a34d07;
    font-size: 20px;
}