/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: #007BFF;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-right: 15px; /* Espaçamento entre logo e título */
}

h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

/* Menu de navegação */
nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 30px;
}

nav .nav-links a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav .nav-links a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, #007BFF, #00d2d2);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffcc00;
  color: #333;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e6b800;
}

/* Serviços Section */
.services {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1.1rem;
}

/* About Section */
.about {
  background-color: #e9ecef;
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.1rem;
}

textarea {
  resize: vertical;
  height: 150px;
}

button {
  background-color: #007BFF;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/* Estilo do Rodapé */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .container p {
  margin: 0;
  font-size: 1rem;
}

footer .footer-middle {
  margin-top: 20px;
}

footer .footer-middle p {
  font-size: 1.2rem;
  font-weight: bold;
}

footer .security-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
}

footer .security-icon {
  width: 60px; /* Redimensionando o tamanho da imagem */
  height: 50px;
  object-fit: cover; /* Garante que a imagem preencha a área */
}

footer .security-icon2 {
  width: 120px; /* Redimensionando o tamanho da imagem */
  height: 50px;
  object-fit: cover; /* Garante que a imagem preencha a área */
}

footer .security-icons span {
  font-size: 1rem;
  color: #ffcc00;
  font-weight: bold;
}

/* Responsividade - Ajustes para telas menores */
@media (max-width: 768px) {
  footer .security-icons {
    flex-direction: column;
    gap: 10px;
  }

  footer .security-icons span {
    font-size: 1.1rem;
  }
}

/* Media Queries - Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav .nav-links {
    margin-top: 15px;
    flex-direction: column;
  }

  nav .nav-links li {
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services h2, .about h2, .contact h2 {
    font-size: 2rem;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    padding: 20px;
  }

  form {
    width: 90%;
  }

  button {
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .about p {
    font-size: 1.1rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  input, textarea {
    padding: 12px;
    font-size: 1rem;
  }

  button {
    padding: 12px 25px;
  }
}

/* Estilo do Ícone do WhatsApp */
.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Distância da parte inferior */
  right: 20px;  /* Distância da parte direita */
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Cor padrão do WhatsApp */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  transform: scale(1.1); /* Aumenta o ícone quando passa o mouse */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon-circle {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon-logo {
  width: 30px;
  height: 30px;
  background-image: url('https://img.icons8.com/?size=512&id=16466&format=png'); /* Logo do WhatsApp */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}