/* Variáveis de Cores */
:root {
    --primary-color: #eec601;
    --secondary-color: #002a59;
    --light-color: #ffffff;
    --dark-color: #333;
    --bg-color: #f0f0f0;
    --font-family: 'Poppins', sans-serif;
  }
  
  /* Reset Básico */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--bg-color);
  }
  

  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    margin: 10px 0 20px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
  }
  
  /* Seções */
  .section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .bg-light {
    background:var(--bg-color);
  }
  
  /* Serviços */
.servicos-section {
    padding: 50px 20px;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .servicos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .servico-card {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .servico-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .servico-card p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .servicos-container {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Formulário */
  .form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .form label {
    display: block;
    margin: 10px 0 5px;
  }
  
  .form input, .form textarea, .form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }
  
  form button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  /* Rodapé */
  footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 10px 20px;
    text-align: center;
  }
  
/* Estilo da Navbar */
.navbar-header {
    background-color: var(--secondary-color);
    padding: 10px 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-img {
    max-height: 50px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--light-color);
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: var(--primary-color);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .hamburger .line {
    width: 100%;
    height: 3px;
    background: var(--light-color);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .close-menu {
    display: none;
    font-size: 2rem;
    margin-bottom: 20px;
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--secondary-color);
      padding: 20px;
      position: absolute;
      top: 60px;
      right: 20px;
      border-radius: 8px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .close-menu {
      display: block;
    }
  }
  
/* Espaçamento entre o menu e o banner principal */
.navbar-header {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
  }
  
/* Estilo do Banner Principal */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  text-align: center;
  flex-wrap: wrap;
}

.hero-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-direction: row; /* Coloca os elementos lado a lado */
  max-width: 80%;
  padding: 20px;
  gap: 40px; /* Espaço entre a imagem e o conteúdo */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  margin: 10px 0 20px;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 10px 20px;
  background: none;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid var(--primary-color);
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-icon {
  width: 20px;
  height: auto;
}

/* Imagem Chamativa */
.hero-image {
  display: flex;
  justify-content: center; /* Centraliza a imagem */
}

.hero-image img {
  max-width: 60%;  /* Ajuste do tamanho da imagem */
  height: auto;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: max-width 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    padding: 20px; /* Ajusta o padding para telas menores */
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
    flex-direction: column; /* Coloca a imagem em cima e o texto embaixo */
    text-align: center; /* Alinha o texto ao centro em telas menores */
  }

  .hero-image img {
    max-width: 80%;  /* Ajuste o tamanho da imagem */
  }
}

@media (max-width: 768px) {
  .hero-image img {
    max-width: 70%;  /* Ajuste o tamanho da imagem */
  }
}

@media (max-width: 480px) {
  .hero-image {
    display: none;  /* Esconde a imagem em telas menores */
  }
}


/* Estilos gerais da seção FAQ */
.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-color);
    text-align: center;
    color: var(--dark-color);
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .faq-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center; /* Centraliza os cards */
  }
  
  .faq-item {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 800px; /* Define o tamanho máximo do card */
    width: 100%; /* Garante que os cards se ajustem dentro da largura máxima */
  }
  
  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .faq-question {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .faq-answer {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
  }
  
  /* Estilo do CTA */
  .cta-container {
    margin-top: 40px;
  }
  
  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
  }
  
  
  /* Responsividade */
  @media (max-width: 768px) {
    .faq-items {
      grid-template-columns: 1fr;
    }
  }
  