*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html{
    width: 100%;
    scroll-behavior: smooth;
}

body{
    background-color: #f7f7f7;
    width: 100%;
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-site{
    height: 50px;
    width: auto;
    max-width: 250px;
    margin-bottom: 10px;
}

.centralizar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.botao{
    background-color: #f5a623;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(245, 166, 35, 0.25);
}

.botao:hover{
    background-color: #e09010;
    transform: translateY(-2px);
}

.botao-janela{
    display: inline-block;
    margin-top: 15px;
}

/* Menu */
#menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a2e;
    padding: 0px 25px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    gap: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu.escondido{
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Navegador */
#navegador{
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

#navegador li a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.2s ease;
}

#navegador li a:hover{
    color: #f5a623;
}

.btn-contato{
  background-color: #ff6600;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-contato:hover{
  background-color: #e65c00;
}

/* Hero */
#hero{
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  background: url("../IMG/fundo.jpg");
  background-size: cover;
  background-position: center bottom;  
  font-weight: bold;
}

#hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 176, 181, 0.3);
  z-index: 1;
}

#hero > *{
  position: relative;
  z-index: 2;
}

#hero h2{
    font-size: clamp(4rem, 6vw, 6rem);
    line-height: 1.1;
}

#hero h2 em{
    color: #e65c00;
    font-style: normal;
}

#hero p{
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 700px;
    line-height: 1.6;
}

#hero-botoes{
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

/* Benefícios */
#beneficios{
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.card-beneficios:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 26, 46, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#beneficios h2{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 40px;
}

#grade-beneficios{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-beneficios{

    background: linear-gradient(180deg, #f7f7f7 0%, #edf0f3 100%);;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    margin: 20px;
    font-size: 20px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);

}.card-beneficios p{

    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    margin-top: 8px;
    line-height: 1.4;
}

/* Processo */
#processo{
    padding: 40px 40px;
    background: #fff;
    text-align: center;
}

#processo h2{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 50px;
}

.processo-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
}

.etapa-card{
    background: linear-gradient(180deg, #f7f7f7 0%, #edf0f3 100%);
    padding: 40px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    margin-bottom: 30px;
}

.etapa-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 26, 46, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.etapa-numero{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #1a1a2e;
    color: #f5a623;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 12px;
}

.etapa-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.etapa-card p{
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Contador */
#contador{
    background-color: #1a1a2e;
    padding: 70px 20px;
    text-align: center;
}

#contador-titulo{
    color: #f5a623;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

#contador-subtitulo{
    color: white;
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 50px;
}

#contador-grade{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 0 auto;
}

.contador-item{
    flex: 1;
    min-width: 180px;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.contador-item:last-child{
    border-right: none;
}

.contador-numero{
    font-size: 58px;
    font-weight: bold;
    color: #f5a623;
    line-height: 1;
}

.contador-label{
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-top: 10px;
}

/* Projetos */
#projetos{
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#projetos h2{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 40px;
}

#grade-projetos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.item-projeto{
    position: relative;
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.item-projeto img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.item-projeto:hover img{
    opacity: 0.88;
    transform: scale(1.04);
}

/* Modal */
#janela{
    visibility: hidden;      
    opacity: 0;              
    transition: opacity 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#janela.ativo{
    visibility: visible;      
    opacity: 1;               
}

#janela-conteudo{
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    position: relative;

    transform: scale(0.8);   
    opacity: 0;             
    transition: all 0.4s ease;
}

#janela.ativo #janela-conteudo{
    transform: scale(1);     
    opacity: 1;              
}

#janela-video{
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #000;      
}

#janela-titulo{
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

#janela-descricao{
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

#janela-fechar{
    position: absolute;
    top: 15px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}

#janela-fechar:hover{
    color: #1a1a2e;
}

/* Depoimentos */
#depoimentos{
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

#depoimentos h2{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 10px;
}

#depoimentos-sub{
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

#mCarousel{
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-seta{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1a1a2e;
    color: #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.carousel-seta:hover{
    background-color: #f5a623;
    color: #1a1a2e;
    transform: translateY(-50%) scale(1.08);
}

.carousel-seta.esquerda{
    left: -60px;
}

.carousel-seta.direita{
    right: -60px;
}

.card-depoimento{
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    margin: 0 10px 40px 10px;
}

.card-depoimento p{
    font-size: 17px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

.autor{
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-inicial{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a1a2e;
    color: #f5a623;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.autor h6{
    font-size: 16px;
    color: #222;
}

.estrelas{
    color: #f5a623;
    font-size: 20px;
    margin-bottom: 15px;
}

/* FAQ */
#faq{
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.faq-container{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.faq-texto{
  position: sticky;
  top: 100px;
  align-self: start;
  flex: 0 0 260px;
  text-align: center;
}

.faq-tag{
    color: #f5a623;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

#faq h2{
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 10px;
    color: #000000;
}

.faq-sub{
    color: #a0a0a8;
    font-size: 16px;
    margin-bottom: 30px;
}

.faq-texto .botao{
  display: inline-block;
  background-color: #f5a623;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.faq-texto .botao:hover {
  background-color: #e09010;
}

.faq-lista{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    flex: 1;
}

.faq-item{
    border-bottom: none;
    margin-bottom: 6px;
}

.faq-pergunta{
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 78, 78, 0.123);
    padding: 8px 14px; 
    text-align: left; 
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    transition: all 0.2s ease;
    border-radius: 8px;
    white-space: normal; 
    overflow-wrap: break-word;
}

.faq-pergunta:hover{
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.3);
}

.faq-icone{
    font-size: 24px;
    font-weight: 300;
    color: #f5a623;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-resposta{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

.faq-resposta p{
    color: #151555;
    font-size: 15px;
    line-height: 1.7;
    padding-bottom: 12px;
    margin: 0;
    text-align: center; 
}

.faq-item.ativo .faq-icone{
    transform: rotate(45deg);
}

.faq-item.ativo .faq-resposta{
    max-height: 300px;
    padding-top: 4px;
}

/* Orçamento */
#orcamento{
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
}

.orcamento-container{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.orcamento-info{
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #fff;
    padding: 50px 40px;
}

.orcamento-tag{
    display: inline-block;
    background: rgba(245, 166, 35, 0.12);
    color: #f5a623;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.orcamento-info h2{
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.orcamento-info p{
    color: #cfcfd7;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.orcamento-info ul{
    list-style: none;
}

.orcamento-info li{
    margin-bottom: 10px;
    color: #f7f7f7;
}

.orcamento-form{
    padding: 45px;
}

.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.orcamento-form label{
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.orcamento-form input{
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    outline: none;
    margin-bottom: 16px;
}

.orcamento-form select{
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    outline: none;
    margin-bottom: 16px;
}

.orcamento-form textarea{
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    outline: none;
    margin-bottom: 16px;
}

.orcamento-form input:focus{
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.orcamento-form select:focus{
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.orcamento-form textarea:focus{
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.botao-form{
    width: 100%;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.form-feedback{
    display: none;
    margin-top: 12px;
    text-align: center;
    color: #1b8a52;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
#rodape{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #1a1a2e;
    color: white;
    padding: 60px 40px;
    gap: 16px;
}

#rodape h5{
    font-size: 20px;
    margin-bottom: 15px;
    color: #f5a623;
}

#rodape img{
    height: 70px;
    width: auto;
    max-width: 180px;
    margin-bottom: 30px;
}

#rodape ul{
    list-style: none;
}

#rodape ul li{
    margin-bottom: 10px;
    font-size: 16px;
}

#rodape ul li a{
    text-decoration: none;
    color: white;
}

#rodape ul li a:hover{
    color: #e09010;
}

#rodape p{
    font-size: 15px;
    color: #aaa;
    max-width: 280px;
    line-height: 1.6;
}

#rodape-fundo{
    text-align: center;
    background-color: #0f0f1a;
    color: #aaa;
    padding: 20px;
    font-size: 14px;
}

/* Botão Whatsapp */
#whatsapp-button{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

#whatsapp-button a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#whatsapp-button img{
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

#whatsapp-button img:hover{
  transform: scale(1.1);
}

/* Visualização Mobile */
@media (max-width: 600px){
    #menu{
        position: relative;
        flex-direction: column;
        gap: 0;
        padding: 0 0;
        width: 100%;
        transform: none
    }

    .logo-site{
        height: 60px;
    }

    #navegador{
        display: none;
    }

    #navegador li a{
        display: none;
    }

    .btn-contato{
    background: none;
    color: #fff; 
    padding: 0;
    border-radius: 0;
    font-weight: normal;
    }

    #hero{
        height: auto;
        min-height: 500px;
        padding: 50px 14px;
    }

    #hero h2{
        font-size: 2.7rem;
    }

    #hero p{
        font-size: 1.5rem;
    }

    .botao{
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        font-size: 15px;
    }

    #hero-botoes{
        width: 100%;
    }

    #contador{
        padding-left: 10px;
        padding-right: 10px;  
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #contador-titulo{
        padding: 20px 20px;
    }

    #contador-subtitulo{
        margin-bottom: 20px;
    }

    .contador-item{
        min-width: 100%;
        padding: 22px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .contador-item:last-child{
        border-bottom: none;
    }

    .contador-numero{
        font-size: 3rem;
    }

    .contador-label{
        font-size: 13px;
    }

    #beneficios{
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 40px;
        padding-bottom: 40px; 
    }

    #grade-beneficios{
        gap: 12px;
    }

    #processo{
        padding-left: 10px;
        padding-right: 10px;  
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .processo-grid{
        padding: 5px 5px;
        gap: 12px;
    }

    #projetos{
        padding-left: 10px;
        padding-right: 10px;  
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .projeto-oculto{
        display: none;
    }

    #ver-mais-container{
        text-align: center;
        margin-top: 30px;
    }
 
    #btn-ver-mais{
        display: none;
        background: none;
        border: 1px solid #ccc;
        color: #888;
        font-size: 13px;
        font-family: "Montserrat", sans-serif;
        padding: 8px 20px;
        border-radius: 20px;
        cursor: pointer;
        transition: border-color 0.2s ease, color 0.2s ease;
    }

    #btn-ver-mais:hover{
        border-color: #f5a623;
        color: #f5a623;
    }

    #janela-descricao{
        display: none;
    }

    #depoimentos{
        padding-left: 10px;
        padding-right: 10px;  
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    #orcamento{
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .faq-pergunta {
        font-size: 14px;
        /* centralizar somente no mobile, mantendo espaço para o ícone */
        padding: 18px 48px 18px 16px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .orcamento-form{
        padding: 32px 14px;
    }

    .orcamento-info{
        padding: 32px 14px;
    }

    .orcamento-container{
        grid-template-columns: 1fr;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .processo-grid{
        grid-template-columns: 1fr;
    }

    .carousel-seta{
        display: none;
    }

    .carousel-inner{
        touch-action: pan-y;
    }

    .card-depoimento{
        padding: 26px 14px;
        margin: 0 0 30px 0;
    }

    #rodape{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 50px;
    }

    #rodape img{
        height: 50px;
        display: block;
        margin: 0 auto;
    }

    #rodape p{
        max-width: 100%;
        padding: 25px;
    }

    #whatsapp-button img{
    width: 45px; 
    height: 45px;
  }

    .faq-container{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .faq-texto{
        position: static;
        top: auto;
        align-self: stretch;
        flex: none;
        width: 100%;
        text-align: center;
        padding-bottom: 6px;
    }

    .faq-lista{
        max-width: 100%;
        width: 100%;
        margin: 0;
        text-align: left;
    }
}

/* Efeito */
.fade-slide{
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-left{
  transform: translateX(-30px);
}
.fade-right{
  transform: translateX(30px);
}
.fade-up{
  transform: translateY(30px);
}

.fade-slide.visible{
  opacity: 1;
  transform: translateX(0) translateY(0);
}