body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #fff;
}
/*header*/
.header {
    background-color: #333; /* Cor de fundo semelhante à imagem */
    color: #fff;
    display: flex;
    justify-content: space-between; /* Alinha elementos nos extremos */
    align-items: center; /* Centraliza verticalmente */
    padding: 10px 20px;
    border-bottom: 2px solid #444; /* Linha inferior */
}

.contacts {
    font-size: 14px;
}

.contacts i {
    margin-right: 5px;
}

.social-links a {
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    font-size: 18px;
}

.social-links a:hover {
    color: #ddd; /* Efeito hover para os ícones */
}


.principal {
  background: linear-gradient(rgba(0, 0, 0, 0.131), rgba(0, 0, 0, 0.467)), 
                    url('prin.jpg') no-repeat center center;
        background-size: cover; /* Faz a imagem cobrir todo o espaço disponível */
   
    background-size: 100%;
    height: 95vh;
    animation: zoomBackground 5s ease-in-out;
    animation-fill-mode: forwards; /* Mantém o estilo final da animação */
}

/* Definição da animação */
@keyframes zoomBackground {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%; /* Tamanho final do zoom */
    }
}



.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: right;
    padding: 10px 10px;
    position: sticky;
    top: 0;
}
.navbar a:hover {
    text-decoration: underline;
    
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

.highlight {
    text-align: center;
    margin-top: 10%;
}
.highlight img{
    width: 15%;
 
}

.highlight h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.highlight p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.search-bar {
    text-align: center;
    margin-top: 20px;
}

.search-bar input {
    width: 70%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
}
/*botao principal*/
.whatsapp-button button {
    padding: 10px 20px; /* Espaçamento interno */
    background-color: #25d365d5; /* Cor verde do WhatsApp */
    color: white; /* Cor do texto */
    font-size: 16px; /* Tamanho da fonte */
    font-weight: bold; /* Texto em negrito */
    border: none; /* Remove as bordas padrão */
    border-radius: 5px; /* Cantos arredondados */
    cursor: pointer; /* Indica que o elemento é clicável */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transição suave */
  }

  .whatsapp-button button:hover {
    background-color: #1ebe57; /* Cor mais escura ao passar o mouse */
    transform: scale(1.05); /* Leve aumento no tamanho ao passar o mouse */
  }

  .whatsapp-button button:active {
    background-color: #19a849; /* Cor mais escura ao clicar */
    transform: scale(0.97); /* Leve redução no tamanho ao clicar */
  }

  /*servicos*/
  #servicos {
    border-top: 5px solid #1e1e1e;
    padding: 40px 20px;
    background-image: url('Principa.jpg');
    background-color: rgba(0, 0, 0, 0.553); /* camada escura */
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white; /* garante legibilidade */
  }
  

  #servicos h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px; /* ajuste esse valor como preferir */
  }
  

  .grid-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .servico {
    background: rgba(56, 56, 56, 0);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
  }

  .servico img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .servico h2 {
    font-size: 1.5rem;
    margin: 15px;
    text-shadow: 1px 1px 2px rgba(49, 48, 48, 0.852);
  }
  

  .servico p {
    font-size: 1rem;
    padding: 0 15px;
    flex-grow: 1;
    text-shadow: 1px 1px 2px rgba(40, 39, 39, 0.587);
    letter-spacing: 0.5px; /* ajuste leve entre letras */
  }
  
  .botao {
    background-color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    margin: 15px;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .botao:hover {
    background-color: #0056b3;
  }

  /*orcamento*/
  .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  
  @media (min-width: 768px) {
    .container {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .info {
    flex: 1;
    text-align: center;
  }
  .info strong{
    font-size: 30px;
   
  }

  
  .imagem {
    padding-top: 2%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .descricao {
    font-size: 18px;
    color: #333;
  }
  
  .formulario {
    flex: 1;
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 12px;
  }
  
  .formulario h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
  }
  
  .formulario form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  input,
  textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
  }
  
  button {
    padding: 12px;
    background-color: #16a34a;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #15803d;
  }
  
  /*icones de servicos*/
  .servicos {
    padding-top: 3%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .titulo {
    text-align: center;
    font-size: 2rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 12px 0 8px;
    color: #111827;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #4b5563;
  }
  
  .icone {
    width: 40px;
    height: 40px;
    color: #16a34a;
    margin: 0 auto 12px;
  }
  /*rodape*/
  .footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .footer p {
    font-size: 0.95rem;
    margin: 6px 0;
  }
  
  .footer a.link-whats {
    color: #10b981;
    text-decoration: none;
  }
  
  .footer a.link-whats:hover {
    text-decoration: underline;
  }
  
  .horarios {
    margin-top: 20px;
  }
  
  .botoes {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .botao-gps,
  .botao-horario {
    background-color: #a34516;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
  }
  
  .botao-horario {
    background-color: #374151;
  }
  
  .botao-gps:hover {
    background-color: #15803d;
  }
  
  .botao-horario:hover {
    background-color: #1f2937;
  }
  
  .icone-footer,
  .icone-botao {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    color: #10b981;
  }
  /*equipe*/
  .missao-wec {
    padding: 60px 20px;
    text-align: center;
    background-color: #f3f4f6;
  }
  
  .imagem-fundo {
    position: relative;
    display: inline-block;
    max-width: 100%;
  }
  
  .imagem-fundo img:first-child {
    width: 100%;
    height: auto;
    display: block;
    border-radius:0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .imagem-central {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 350px; /* ou ajuste conforme seu design */
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .frase-impacto {
    font-size: 1.6rem;
    font-weight: 600;
    color: #303132;
    max-width: 800px;
    margin: 40px auto 0;
  }
  /*linkmike*/
  .creditos {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #d1d5db;
  }
  
  .creditos .link-dev {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
  }
  
  .creditos .link-dev:hover {
    text-decoration: underline;
  }
  
 /*telas menores*/
  @media (max-width: 768px) {

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  
  body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  .header{
    padding-top: 20px;
  }
    .principal {
        background: linear-gradient(rgba(0, 0, 0, 0.053), rgba(0, 0, 0, 0.5)), 
                    url('prin.jpg') no-repeat center center;
        background-size: cover; /* Faz a imagem cobrir todo o espaço disponível */
        width:1150px; /* Largura total da tela */
        height:100%; /* Altura total da tela */
        animation: zoomBackground 2s ease-in-out forwards;
    }
    /*botoes*/
    .navbar a {
       display: none;
    }
    .highlight{
        width: 34%;
        padding: 20px;
     
    }
    .highlight img{
        width: 60%;
     
    }
    .highlight h1 {
        font-size: 2.4rem;
        margin: 0;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    }
    .highlight p {
        font-size: 1.4rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    }
    /*botao principal*/
    .whatsapp-button button {
    padding: 10px 20px; /* Espaçamento interno */
    margin-top: 25px;
    margin-bottom: 50px;
    background-color: #25d365d5; /* Cor verde do WhatsApp */
    color: white; /* Cor do texto */
    font-size: 20px; /* Tamanho da fonte */
    font-weight: bold; /* Texto em negrito */
    border: none; /* Remove as bordas padrão */
    border-radius: 5px; /* Cantos arredondados */
    cursor: pointer; /* Indica que o elemento é clicável */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transição suave */
  }
   /*servicos*/
   #servicos {
    padding: 40px 20px;
    background: #111827;
    background-color: rgba(0, 0, 0, 0.818); /* camada escura */
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white; /* garante legibilidade */
  }
  .servicos h2{
    padding-top: 30px;
    font-size: 20px;
  }
  .grid-servicos {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  /*equipe*/
  .missao-wec {
    padding: 20px 10px;
    text-align: center;
    background-color: #f3f4f6;
  }
  .imagem-central {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 160px; /* ou ajuste conforme seu design */
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .frase-impacto {
    font-size: 1.2rem;
    font-weight: 600;
    color: #303132;
    max-width: 800px;
    margin: 40px auto 0;
  }


}