/* Configurações Globais */

:root {

    --primary-color: hsl(54, 100%, 69%);    /* Azul Escuro (Confiança) */

    --accent-color: #f39c12;     /* Laranja (Ação/Automotivo) */

    --text-dark: #2d3436;

    --text-light: #004a99;

    --bg-light: #f9f9f9;

    --transition: all 0.3s ease;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: Verdana, Geneva, Tahoma, sans-serif

}





body {

    background-color: var(--bg-light);

    color: var(--text-dark);

}



/* Navegação */

header {

    padding: 30px 15%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}


/* ============================================= */

/*               MENU MOBILE                     */

/* ============================================= */



/* Mobile - Menu Fixo e Visível */
/* Ajuste Mobile */
@media (max-width: 768px) {
    header, #main-header {
        padding: 5px 15px; /* Padding menor ainda no mobile */
        flex-direction: column;
        top: 0 !important;
    }

    /* 1. Esconde o botão hambúrguer definitivamente */
    .menu-botao, #menu-check {
        display: none !important;
    }

    /* 2. Ajusta o Header para acomodar o menu em linha ou coluna */
    #main-header {
        padding: 10px 15px; /* Reduz padding lateral no mobile */
        flex-direction: column; /* Logo em cima, menu embaixo (opcional) */
        height: auto;
    }

    /* 3. Reseta as configurações de esconder o nav */
    nav {
        position: static !important; /* Volta para o fluxo normal da página */
        width: 100%;
        height: auto;
        background: transparent !important;
        backdrop-filter: none !important;
        padding-top: 10px !important;
        display: block !important;
    }

    /* 4. Organiza os links horizontalmente ou em grade */
    nav ul {
        flex-direction: row !important; /* Mantém na horizontal */
        justify-content: center;
        flex-wrap: wrap; /* Se não couber, ele quebra a linha */
        gap: 15px;
        padding: 0;
    }

    nav ul li {
        margin: 5px 0 !important;
        width: auto !important;
    }

    /* 5. Ajusta o tamanho da fonte para caber em telas pequenas */
    nav ul li a {
        font-size: 14px !important; /* Fonte menor para não ocupar muito espaço */
        padding: 5px 0;
    }

    /* Ajuste do Banner Hero para não ficar por baixo do menu fixo maior */
    .hero {
        padding-top: 120px; 
    }
}

/* Seu cabeçalho agora precisa ser fixo no topo */

#main-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 50px;

    z-index: 1000;

    transition: transform 0.4s ease, background 0.4s ease; /* Transição suave */

}



/* Esta classe será adicionada pelo JavaScript ao rolar para baixo */

#main-header.scroll-down {

    transform: translateY(-100%); /* Move o menu para fora da tela (para cima) */

}



/* Opcional: Quando estiver no topo, o menu pode ser transparente */

#main-header.scroll-up {

    transform: translateY(0);

    background-color: #000; /* Fica sólido ao voltar */

    box-shadow: 0 2px 10px rgba(0,0,0,0.3);

}



.logo h2 {

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 2px;

}

.logo h1 {

    color: var(--bg-light);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 15px;

    margin-left: 20px;

}



.logo-img {

    height: 100px; /* Ajuste o tamanho da sua logo aqui */

    width: auto;

    display:flex;

    margin-right: center;

}



.logo span { color: var(--accent-color); }



nav ul { display: flex; list-style: none; }

nav ul li { margin-left: 30px; }

nav ul li a {

    color: var(--bg-light);

    text-decoration: none;

    font-weight: 600;

    transition: var(--transition);

    font-size: 25px;

   

}

nav ul li a:hover { color: var(--accent-color); }



/* Banner Principal (Hero) */

.hero {

    min-height: 150vh; /* melhor que 150vh */

    width: 100%;


    



    background-image:

        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),

        url('img/Casa\ dos\ Parabrisas\ \(1\).png');

        

    background-size: cover;        /* ESSENCIAL */

    background-position: center;   /* ESSENCIAL */

    background-repeat: no-repeat;



    display: flex;

    flex-direction: column;

    justify-content: end;

    align-items: center;

    text-align: center;



    color: var(--bg-light);

}



.hero h1 { font-size: 35px; margin-bottom: 20px; }

.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; }





/* Botões */

.btn {

    padding: 15px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: var(--transition);

    display: inline-block;

}



.btn-primary {

    background: var(--accent-color);

    color: white;

    margin-bottom: 100px;

}



.btn-primary:hover {

    background: hsl(54, 100%, 69%);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);

}



/* Grade de Serviços */

.services { padding: 80px 10%; }

.section-title { text-align: center; margin-bottom: 50px; }

.section-title h2 { font-size: 2.2rem; color: var(--text-light); }



.services-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    

}



.card {

    background: hsl(54, 100%, 69%);

    padding: 40px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    transition: var(--transition);

}



.card:hover { transform: translateY(-10px); }

.card i { font-size: 40px; color: var(--text-light); margin-bottom: 20px; }

.card h3 { margin-bottom: 15px; }



/* Seção de Duas Colunas */

.destaque-info {

    display: flex;

    flex-wrap: wrap;

    padding: 60px 10%;

    gap: 40px;

    background-color: #fdfdfd;

}



.info-coluna {

    flex: 1;

    min-width: 300px; /* Garante que as colunas quebrem em telas pequenas */

    text-align: center;

}



.info-content {

    padding: 20px;

    border-top: 5px solid var(--text-light); /* Linha vermelha no topo */

    background: #fdfdfd;

    border-radius: 8px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    transition: transform 0.3s ease;

}



.info-content:hover {

    transform: translateY(-5px);

}



.info-content h3 {

    color: var(--text-light); /* Vermelho */

    font-size: 1.6rem;

    margin-bottom: 20px;

    text-transform: uppercase;

}



.info-content img {

    width: 100%;

    height: 400px;

    object-fit: cover; /* Mantém a proporção da imagem sem distorcer */

    border-radius: 5px;

    border: 3px solid var(--accent-color); /* Borda Amarela na imagem */

    margin-bottom: 20px;

}



.info-content p {

    font-size: 1.1rem;

    color: #555;

    line-height: 1.6;

}



/* Ajuste Responsivo para Celular */

@media (max-width: 768px) {

    .destaque-info {

        padding: 40px 5%;

    }

}



@media (max-width: 768px) {

    .main-header {

        padding: 40px 5%;

    }

}

@media (max-width: 665px){
    .hero{
            
    
        min-height: 50vh; /* melhor que 150vh */

        width: 100%;
     
        background-image:

        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),

        url('img/Fachada\ Photo\ Shop\ 2\ \(1\).png');

        justify-content: flex-end;

        padding-bottom: 60px;

        color: var(--bg-light);

    
    }
    .hero h1{
        font-size: 1.4rem;
        margin-top: 100px;
    }
  
    
}







.servicos-container {

    padding: 50px 20px;

    text-align: center;

    background-color: #f9f9f9;

}



.titulo-sessao {

    color: #004a99;

    margin-bottom: 40px;

    font-size: 2rem;

    text-transform: uppercase;

}



.cards-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    margin: 0 auto;

}



.card-servico {

    background: white;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: transform 0.3s ease;

    border-bottom: 4px solid #25d366; /* Verde do seu padrão */

}



.card-servico:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

}



.card-servico .icon {

    font-size: 50px;

    margin-bottom: 15px;

}



.card-servico h3 {

    color: #333;

    margin-bottom: 10px;

}



.card-servico p {

    color: #666;

    font-size: 0.95rem;

    line-height: 1.5;

}





/* Seção História */

.historia {

    padding: 50px;

    background-color: #fff;

}



.container-historia {

    display: flex;

    align-items: center;

    gap: 70px;

    flex-wrap: wrap;

}



.historia-texto h2 {

    font-size: 40px;

    margin: 10px;

    color: var(--text-dark);

    flex: 1;

    padding: 10px 0;

    text-align: center;

 

}

@media (max-width:768px){
    .historia-texto h2 {
        font-size: 2rem;
    
    }
    
}



.destaque {

    color: var(--primary-color);

   

    }



.historia-texto p {

    margin-bottom: 15px;

    color: #666;

    line-height: 1.6;

    font-size: 20px;

    padding-top: 10px;

      flex-direction: column;

    display: flex;

    justify-content: flex-start;
    
    text-align: justify;

}



.historia-imagem {

    flex: 1;

    min-width: 450px;

    position: relative;

}



.historia-imagem img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 20px 20px 0px var(--accent-color); /* Sombra sólida amarela */

}



.selo-experiencia {

    position: absolute;

    bottom: -20px;

    right: -20px;

    background: var(--text-dark); /* Preto */

    color: white;

    padding: 20px;

    border-radius: 10px;

    text-align: center;

    font-weight: bold;

    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

}

@media  (max-width:768px) {

    .selo-experiencia {
        box-shadow: 0 5px 10px;
        padding: 2px;
       bottom: -50px;
        
    }

    .selo-experiencia span h2{
        font-size: 2px;
    }
    

}



.selo-experiencia span {

    display: block;

    font-size: 1.5rem;

    color: var(--accent-color); /* Amarelo */

}



.historia-texto {

    flex: 1.2;

    min-width: 250px;

}





.valores ul {

    padding: 40px;

    list-style: none;

    margin-top: 20px;

    margin-bottom: 50px;  

    

    
}

.valores h2{
    margin-top: 20px;
    text-align: center;
}



.valores li {

    margin-bottom: 10px;

    font-weight: 500; 

}



.valores i {

    color: var(--accent-color);

    font-size: 1.2rem;

  

  

}



/* Ajuste Celular */

@media (max-width: 900px) {

    .container-historia {

        flex-direction: column-reverse; /* Imagem fica embaixo do texto no celular */

    }

    .historia-imagem {

        min-width: 100%;
        

    }

}

/* Botão WhatsApp */

.whatsapp-button:hover {

  background-color: #128c7e;

  transform: scale(1.1);

}

.container-info {

    display: flex;

    justify-content: space-around;

    align-items: flex-start;

    flex-wrap: wrap; /* Faz quebrar linha no celular */

    gap: 10px;

    padding: 40px;

    background-color: rgba(29, 28, 28, 0.05);

    border-radius: 8px;

    box-shadow: 0 2px 15px rgba(0,0,0,0.05);

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}



.instagram-float {

    position: fixed;

    bottom: 90px; /* Ele fica acima do WhatsApp que está em 20px ou 30px */

    right: 15px;

    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);

    color: white;

    padding: 15px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 20px;

    text-decoration: none;

    font-weight: bold;

    font-family: sans-serif;

    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);

    z-index: 1000;

    transition: transform 0.3s;

}



.instagram-float:hover {

    transform: scale(1.05);

}



/* Esconder o texto em telas muito pequenas (opcional) */

@media (max-width: 768px) {

    .instagram-float span {

        display: none;

    }

    .instagram-float {

        padding: 15px;

        border-radius: 50%;

    }

}



.coluna {

    flex: 1;

    min-width: 280px; /* Largura mínima antes de quebrar linha */

}



.coluna h3 {

    color: var(--text-dark); /* Azul padrão automotivo */

    border-bottom: 2px solid var(--text-dark); /* Detalhe em verde */

    padding-bottom: 10px;

    margin-bottom: 20px;

    text-transform: uppercase;

    font-size: 1.2rem;

}



.coluna p {

    line-height: 1.6;

    color: #444;

    margin-bottom: 15px;

}



.lista-horario {

    list-style: none;

    padding: 0;

}



.lista-horario li {

    display: flex;

    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px dotted #2b2a2a;

    color: #201e1e;

}



.status-aberto {

    margin-top: 20px;

    display: inline-block;

    padding: 5px 15px;

    background-color: #e8f5e9;

    color: #2e7d32;

    border-radius: 20px;

    font-size: 0.9rem;

    font-weight: bold;

}

.mapa-container {

    flex: 1.10;

    min-width: 600px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 10 20px 100px rgba(0,0,0,0.1);

}



/* Ajuste para telas pequenas (Celulares) */

@media (max-width: 600px) {

    .container-info {

        padding: 20px;

        text-align: center;

    }

    .lista-horario li {

        flex-direction: column;

        gap: 5px;

    }

}

/* Botão Flutuante */

.whatsapp-float {

    position: fixed; bottom: 20px; right: 20px;

    background-color: #25d366; color: white;

    padding: 10px 20px; border-radius: 30px;

    display: flex; align-items: center; gap: 10px;

    text-decoration: none; font-weight: bold;

    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);

    z-index: 1000; transition: transform 0.3s;

}

.whatsapp-float:hover { transform: scale(1.05); background-color: #128c7e; }

.avaliacao{
    background-color:beige;
}
.avaliacao h1{
text-align: center;
margin: 50px;
margin-top: 10px;



}
     




@media(max-width:200px){
    .avaliacao{
        width: 100px;
        height: 50px;
    }
    .avaliacao h1{
        text-align: center;
    }
}



@media (max-width: 768px) {

    .whatsapp-float span { display: none; } /* No mobile, mostra apenas o ícone */

    .whatsapp-float { border-radius: 50%; padding: 15px; }

}



/* Formulário e Rodapé */

.logo-bits {

    width: 80px;

    height: 30px;

    border-radius: 0px;

    display: end;

 

}

.container-botao{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.btn-avaliacao {
    /* Reset e Display */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Tamanho Responsivo */
    width: 100%;
    max-width: 280px; /* Largura máxima no desktop */
    min-height: 55px; /* Altura mínima em vez de fixa */
    
    /* Estilo Visual */
    background: var(--accent-color, #f1c40f); /* Fallback caso a var não carregue */
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    
    /* Bordas e Sombras */
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    
    /* Animações */
    transition: all 0.3s ease;
    transform: translateY(0);
}

/* Efeito ao passar o mouse */
.btn-avaliacao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.6);
    filter: brightness(1.1);
}

/* Ajuste para telas muito pequenas (Mobile) */
@media (max-width: 480px) {
    .btn-avaliacao {
        max-width: 90%; /* Ocupa quase a tela toda no celular */
        font-size: 14px;
    }
}



/* Texto ao lado da imagem */

.footer p {

    padding: 0%;

    margin: 0%;

    font-size: 0.7em;

    color: var(--bg-light);

   

}

.contact-section { background: #000000; padding: 80px 10%; }

.footer {

    background-color: rgb(79, 86, 94);

    color: rgb(14, 7, 7);

    text-align: center;

    padding: 10px;

}