/* 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 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #d66e19;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

h2.titulo {
    color: #5c5c5c;
    font-size: 38px;
    text-align: center;
    font-weight: 250;
}

h2.titulo span {
    color: #a34d07;
}

button:hover,
form .btn-enviar input:hover {
    box-shadow: 0px 0px 8px #19191a;
    transform: scale(1.05);
}

/* ESTILO DO CABEÇALHO */
header {
    background-color:#131314;
    border:1px solid #1b1b1c;
    opacity: 0.9;
    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: #777676;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
    font-size:15px;
}

header nav.menu-desktop a:hover {
    color: #d66e19;
    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;
}

/* ESTILO DO TOPO DO SITE */
.splinner{
    width: 120vw;
    height: 100vh;
   
      
   }

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #a34d07;
    font-size: 35px;
    line-height: 40px;
    font-weight: 200;
}

.topo-do-site .txt-topo-site h1 span {
    color:#a34d07;
}

.topo-do-site .txt-topo-site p {
    color: #5c5c5c;
    margin: 40px 0;
}


.btn-politicaPrivacidade button{
    padding: 10px 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: #a34d07;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}


/* ESTILO DAS ESPECIALIDADES */
section.especiliadades {
    padding: 40px 4%;

}

section.especiliadades .flex {
    gap: 40px;
    

}

.especiliadades .especialidades-box {


    color: #5c5c5c;
    padding: 20px;
    border:2px solid #a34d07;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}

.especiliadades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #a34d07;
}

.especiliadades .especialidades-box i {
    font-size: 70px;
    color: #a34d07;
    display: flex;
    flex-direction: row; /* row é padrão */
    justify-content: center;
 
}

.especiliadades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

.icones-tech i{
    font-size: 25px;
    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: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    color:#a34d07;
    font-size: 150px;
    cursor: pointer;
    margin: 0px 30px;
    margin-top:20px;
    transition: .2s;
}

.icone-especialidades i{
    position:relative;
    margin-bottom: 100px;
    margin-right: 70px;
    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: 50px;
}

section.sobre .flex {
    align-items: center;
    gap: 10px;
}

.sobre .txt-sobre {
    color: #5c5c5c;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 30px;
    margin-bottom: 30px;
    font-weight: 200;
}

.sobre .txt-sobre h2 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;
}

.sobre .img-sobre img {
    position:relative;
    margin-bottom: 100px;
    margin-right: 40px;
    animation: flutuar 2s ease-in-out infinite alternate;
}

p sup{
    color:#a34d07;
    font-size: 20px;
}


@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}
/* ESTILO DO PORTFÓLIO */

section.portfolio {
    padding: 60px 2%;
    
 
}

section.portfolio .flex {
    justify-content: space-around
    
    
}

.img-port {
    margin-top: 50px;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: 100% 0%;
    cursor: pointer;
    border-radius:25px;
    position: relative;
    border: 3px outset #a34d07;
    color:#a34d07;

    
    
 
}

.img-port:hover {
    background-position: 100% 100%;
     animation: pulse 3s infinite alternate;
    
   
}

.overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 250;
   
    

}

.overlay i{
    font-size: 50px;
}




/* ESTILO DO FORMULÁRIO DE PROPOSTA */
section.formulario {
    padding: 50px 4%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

form label{
    font-size: 18px;
    font-weight: 300;
    color:#777676;
   
}

form input,
form textarea, form select {
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;

}

form input:hover{
    border:1px solid #a34d07;
    
}

form textarea:hover{
    border:1px solid #a34d07;
    
}


form select:hover{
    border:1px solid #a34d07;
    
}


#tiposServicos{
    color:  #fff;

}

#tiposServicos option{
   color: #fff;

}
form textarea{
    padding-bottom: 150px;
    
}

form textarea{
    resize: none;
    max-height: 200px;
}

form .btn-enviar {
    margin-top: 5px;
    text-align: center;
}

form .btn-enviar input {
    width: 95px;
    height: 65px;
    background-color: #a34d07;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
}

/* ESTILO DO RODAPÉ */

footer {
    padding: 2px 2%;
    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: 34px;
        line-height: 30px;
    }

    /* CABEÇALHO */
    .menu-desktop,
    .btn-contato {
        display: none;
    }

    .btn-abrir-menu{
        display: block;
       
    }

    header>.interface h2{  
        margin-left: 40%;
        text-align: center;
    }

    /* TOPO DO SITE */

    section.topo-do-site .flex {
        gap: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site h1 {
         font-size: 25px;
        padding-top: 80px;
        line-height:20px;
        text-align: center;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
    }

    /* ESPECIALIDADES */
    section.especiliadades {
        padding: 40px 8%;
    }

    /* SOBRE */
    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%;

    }

    /* PORTFÓLIO */
    section.portfolio {
        padding: 80px 8%;
    }

    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    section.portfolio .flex {
       gap: 60px;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }

    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;
        margin-top:20px;
        transition: .2s;
    }
    
    .splinner {
        display: none;
    }
    
          
    /*Estilos Pop Up dos Projetos*/
  #projeto-popup {
    display: none;
    position: fixed;
    width:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto; /* Adiciona rolagem caso o conteúdo seja maior */
    background-color:#131314;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Certifique-se de que o popup esteja na frente de outros elementos */
  }
  
  #fechar-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #aaa;
  }
  
  #imagem-projeto {
    text-align: center; /* Centraliza a imagem horizontalmente */
  }

  #imagem-projeto img {
    max-width: 100%; /* Imagem ajusta ao tamanho do container */
    max-height: 100%; /* Imagem ajusta ao tamanho do container */
  }
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .splinner {
        display: none;
    }

    .modal-content {
        flex-direction: column; /* Muda a direção do flex para coluna */
    }
    
    .modal-left {
        width: 100%; /* O vídeo ocupará toda a largura */
        height: 300px; /* Ajuste a altura conforme necessário */
        margin-bottom: 20px; /* Espaçamento entre o vídeo e o texto */
    }

    .modal-right {
        width: 100%; /* O texto também ocupará toda a largura */
        padding: 0; /* Remove o preenchimento */
    }

    video {
        height: auto; /* Permite que a altura do vídeo se ajuste automaticamente */
    }

    /* CLASSES GERAIS */
    .flex {
        flex-direction: column;
    }

    .topo-do-site .flex {
        flex-direction: column-reverse;
    }

    h2.titulo {
        font-size: 34px;
        line-height: 30px;
    }

    /* CABEÇALHO */
    .menu-desktop,
    .btn-contato {
        display: none;
    }

    .btn-abrir-menu {
        display: block;
    }

    header > .interface h2 {
        margin-left: 40%;
        text-align: center;
    }

    /* TOPO DO SITE */
    section.topo-do-site .flex {
        gap: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site h1 {
        font-size: 25px;
        padding-top: 80px;
        line-height: 20px;
        text-align: center;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
    }

    /* ESPECIALIDADES */
    section.especiliadades {
        padding: 40px 8%;
    }

    /* SOBRE */
    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%;
    }

    /* PORTFÓLIO */
    section.portfolio {
        padding: 80px 8%;
    }

    .img-port {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    section.portfolio .flex {
        gap: 60px;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }

    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;
        margin-top: 20px;
        transition: .2s;
    }

    .modal {
        display: none; /* Escondido por padrão */
        position: fixed; 
        z-index: 1; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgba(0, 0, 0, 0.8); 
    }

    .close {
        color: #aaa;
        position: absolute; /* Permite que o botão fique em um lugar fixo */
        top: 20px; /* Distância do topo */
        right: 20px; /* Distância do lado direito */
        font-size: 28px;
        font-weight: bold;
        cursor: pointer; /* Muda o cursor para indicar que é clicável */
    }

    .close:hover,
    .close:focus {
        color: #a34d07; /* Muda a cor ao passar o mouse */
        text-decoration: none; /* Remove a sublinhado */
        cursor: pointer; /* Indica que é clicável */
    }
}

.center {

    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.menu {

    width: 80%;
    border-radius: 8px;
    margin:40px;
    

}

.item {

    border-top: 1px solid #a34d07;
    overflow: hidden;
    color:#222220;

}

.btn {

    display: block;
    padding: 16px 20px;
    background:#a34d07;
    color:#222220;
    position: relative;
    font-weight: 500;
    text-decoration: none;

}

.btn:before {

    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #a34d07;
    left: 20px;
    bottom: -7px;
    transform: rotate(45deg);

}

.btn i {

    margin-right: 10px;

}

.smenu {

    background:#19191a;
    max-height: 0;
    transition: max-height 0.3s ease;

}

.smenu a {

    color: #ffffff;
    display: block;
    padding: 16px 26px;
    font-size: 14px;
    margin: 4px 0;
    position: relative;
    text-decoration: none;

}


.smenu p {

    color: #ffffff;
    display: block;
    padding: 16px 26px;
    font-size: 14px;
    margin: 4px 0;
    position: relative;
    text-decoration: none;

}


.smenu a:hover {

    color:#a34d07;

}

.item:target .smenu {
   
    max-height: 25em;

}

/*Estilos Loader de progresso e Pop Up de confirmação*/

.loader-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999; /* Para garantir que fique acima de todos os outros elementos */
  }
  
  .loader {
    border: 10px solid #f3f3f3; /* Aumenta a espessura da borda para o círculo parecer maior */
    border-radius: 50%;
    border-top: 10px solid #a34d07; /* Aumenta a espessura da borda para o círculo parecer maior */
    width: 100px; /* Ajusta o tamanho do círculo */
    height: 100px; /* Ajusta o tamanho do círculo */
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Estilos para o popup */
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #07852a;
    padding: 30px;
    color: white;
    border-radius: 5px;
    z-index: 1000; /* Para garantir que fique acima de todos os outros elementos */
    text-align: center; /* Centraliza o texto e o botão */
  }
  
   .popup i{
       font-size: 70px;
   }
   
   .popupErro i{
      font-size: 70px;
   }
    
  .popupErro{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #c23529;
    padding: 30px;
    color: white;
    border-radius: 5px;
    z-index: 1000; /* Para garantir que fique acima de todos os outros elementos */
    text-align: center; /* Centraliza o texto e o botão */
  }
  
   .popupErro p{
       margin-bottom: 10px; 
   }
   
  .popup p {
     
    margin-bottom: 10px;
  }
  
  #closeBtn{
    padding: 10px 20px;
    background-color: #ffffff;
    color: #0f0f0f;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
  }
  #closeBtnErro{
    padding: 10px 20px;
    background-color: #ffffff;
    color: #0f0f0f;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
  }
 
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900; /* Abaixo do popup, mas acima do resto do conteúdo */
  }

  

.feedback-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top:30px;
    padding-bottom:50px;
}

.feedback-card {
    background: #0f0f0f;
    border-radius: 8px;
    border:2px solid #a34d07;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1 1 calc(33.333% - 30px); /* Três cards por linha com espaçamento */
    box-sizing: border-box;
    min-width: 320px; /* Largura mínima para os cards */
}

.feedback-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #a34d07;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.feedback-header .avatar {
    width: 80px; /* Ajuste o tamanho do círculo conforme necessário */
    height: 80px; /* Ajuste o tamanho do círculo conforme necessário */
    border-radius: 50%;
    overflow: hidden; /* Garante que a imagem não ultrapasse o círculo */
    margin-right: 15px; /* Espaço entre o avatar e o texto */
}

.feedback-header .avatar img {
    width: 100%; /* Faz com que a imagem preencha a largura do círculo */
    height: 100%; /* Faz com que a imagem preencha a altura do círculo */
    object-fit: cover; /* Garante que a imagem cubra o círculo sem distorção */
    display: block; /* Remove o espaço extra abaixo da imagem */
}

.feedback-header h4 {
    margin: 0;
    color: #a34d07;
}

.feedback-header span {
    color:  #777676;
    font-size: 0.9em;
}

.feedback-card p {
    margin: 0;
    color:#777676;
}

.modal {
    display: none; /* Escondido por padrão */
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.8); 
}

.modal-content {
    background-color: #fff;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 80vh; /* Aumenta a altura máxima do modal */
    display: flex;
}

.modal-left {
    flex: 1;
    height: 100%; /* Altura total do modal */
}

.modal-right {
    flex: 1;
    padding-left: 20px;
}

video {
    width: 100%; /* O vídeo ocupará toda a largura do contêiner */
    height: 100%; /* O vídeo ocupará toda a altura do contêiner */
    object-fit: cover; /* Preenche o contêiner mantendo a proporção */
}

.close {
    color: #aaa;
    position: absolute; /* Permite que o botão fique em um lugar fixo */
    top: 20px; /* Distância do topo */
    right: 20px; /* Distância do lado direito */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer; /* Muda o cursor para indicar que é clicável */
}

.close:hover,
.close:focus {
    color: #a34d07; /* Muda a cor ao passar o mouse */
    text-decoration: none; /* Remove a sublinhado */
    cursor: pointer; /* Indica que é clicável */
}
