/* Configurações Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Estilo do Logotipo */
.logo-img {
  max-height: 50px; /* Ajuste a altura máxima do seu logotipo */
  width: auto;
  display: block;
}

/* Barra de Menu */
.menu-bar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu-bar a {
  text-decoration: none;
  color: #212529;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.menu-bar a:hover {
  color: #0d6efd;
}

/* Seção Principal (Hero) com Imagem de Fundo */
.hero {
  position: relative;
  /* Substitua 'fundo.jpg' pelo caminho da sua imagem */
  background-image: url('pg_1.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  text-align: center;
  color: #ffffff;
}

/* Camada escura sobre a imagem para garantir legibilidade dos textos */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Transparência preta (0.6) */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Fica acima da camada escura */
}

.hero-content h1 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
}

/* Botão WhatsApp */
/*.btn-primary {
  display: inline-block;
  background-color: #25d366;
  color: #ffffff;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, background-color 0.2s; 
}*/

.btn-primary:hover {
  background-color: #1ebd59;
  transform: translateY(-2px);
}

/* Serviços */
.servicos {
  padding: 80px 0;
}

.servicos h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #212529;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  text-align: center;
}

.card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #212529;
}

.card p {
  font-size: 14px;
  color: #6c757d;
}

/* Rodapé */
footer {
  background-color: #47a1fa;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
}

.copyright {
  font-size: 12px;
  color: #adb5bd;
  margin-top: 20px;
}

/* Ajuste Responsivo para Celular */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    gap: 15px;
  }

  .menu-bar ul {
    gap: 15px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}