 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Evita rolagem horizontal */
  }
  body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding-bottom: 80px; /* Deve ser igual à altura do footer */
    box-sizing: border-box;
}
footer {
  position: absolute;
  bottom: 0;
  margin-top: 5%;
  width: 100%;
  }
  /* Cabeçalho */
  header {
    background-color: #333333d8;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Garante que o header fique acima de outros elementos */
    position: fixed; /* Fixa o header no topo */
    width: 100%; /* Ocupa toda a largura da tela */
    height: 60px;
  }
  .content {
    padding-top: 80px; /* Espaço para o header fixo (60px de altura + 20px de margem) */
  }
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  /* Seção de destaque (Hero) */
  .hero {
    background-image: url('https://via.placeholder.com/1200x800'); /* Imagem de fundo */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero .btn {
    background-color: #007BFF;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .hero .btn:hover {
    background-color: #0056b3;
  }

  /* Seção de serviços */
  /* .services {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);  
  } */

  .services .service {
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    transform: scale(1); 
  }
  


  .services .service i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
    color: whitesmoke;
  }

  .services .service h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: whitesmoke;
  }

  .services .service p {
    font-size: 1rem;
    color: whitesmoke;
  }
  .service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    transform: scale(1); 
}

.service-item:hover {
    transform: scale(1.1); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}
  /* Seção de depoimentos */
  .testimonials {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    
    padding: 2rem;
    text-align: center;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: whitesmoke;
  }

  .testimonials .testimonial {
    background-color: #fff;
    padding: 1rem;
    margin: 1rem auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);    
    transition: transform 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease;
    position: relative;
  }
  .testimonial:hover {
    transform: scale(1.02); /* Aumenta o tamanho em 2% */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra mais destacada */
    z-index: 2; /* Traz o item para frente */
  }
  
  .testimonial:hover p {
    font-size: 101%; /* Aumenta o texto em 1% */
  }
  .testimonials .testimonial p {
    font-style: italic;
  }

  .testimonials .testimonial span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }

  /* Rodapé */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
   

  }

  footer p {
    margin: 0;
  }

  /* Botões de redes sociais */
  .social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1; /* Coloca o conteúdo na frente do fundo */
  }

  .social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .social-buttons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  }

  .social-buttons .whatsapp {
    background-color: #25D366; /* Verde do WhatsApp */
  }

  .social-buttons .instagram {
    background-color: #E4405F; /* Rosa do Instagram */
  }

  .social-buttons .facebook {
    background-color: #1877F2; /* Azul do Facebook */
  }
  .services {
    padding: 40px 0;
    background-color: rgba(31, 31, 31, 0.9);
}
.text-item{
    color: whitesmoke;
}
.services div h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: whitesmoke;
}

.service-list {
    display: flex;
    justify-content: space-around;
}

.service-item {
    color: whitesmoke;
    width: 30%;
    text-align: center;
    padding: 20px;
    background-color: rgb(117, 117, 117,0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.para-produtos{
  align-items: center;
  color: whitesmoke;
  margin-top: 6px;
  text-align: center;
}
.para-produtos .btn {
  background-color: #001a36;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.para-produtos .btn:hover {
  background-color: #04376d;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-item p {
  text-align: justify;
    font-size: 1em;
    color: whitesmoke;
}
  /* Responsividade */
  @media (max-width: 768px) {
   

    .services {
      flex-direction: column;
      align-items: center;
    }

    .services .service {
      margin-bottom: 2rem;
    }
  }
  .img-social {
      max-width: 40px;
      max-height: 40px;
  }
  @media (max-width: 768px) {
 
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    .suporte-btn{
        margin-left: 75%;
        margin-right: 1%;
        }
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

   
    .service-list {
        flex-direction: column; 
        align-items: center;   
    }

    .service-item {
        width: 90%; 
        margin-bottom: 20px;
    }

    
    .cta h2 {
        font-size: 1.5em;
    }

    .cta p {
        font-size: 1em;
    }

    
    .contact-form input, 
    .contact-form textarea {
        width: 95%; 
    }

    .contact-form button {
        width: 95%; 
    }
}

@media (max-width: 480px) {
 .container-body {
        margin-top: 8%;
    }
    .service-item {
        font-size: 14px; 
    }
    .suporte-btn{
        margin-left: 70%;
        margin-right: 1%;
        }
        #contact-form{
          margin-left: 0;
          margin-right: 0;
        }
   
    footer p {
        font-size: 0.9em;
    }
}