/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Utilitários */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: center; /* Centraliza os links */
  align-items: center;
}

.navbar nav {
  display: flex;
  gap: 30px;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
}

.navbar nav a:hover {
  color: #2e8b57;
}

/* Hero Section */
.hero-section {
  background: url('assets_task_01k0tba3enftmbc5kfj6h6fxak_1753231026_img_1.webp') center/cover no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: flex-start; /* Alinha o conteúdo à esquerda */
  align-items: center; /* Centraliza verticalmente */
  color: white;
  padding-left: 5%; /* Adiciona um padding à esquerda na seção para o conteúdo não colar na borda */
  padding-right: 0; /* Remove o padding direito */
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(128, 128, 128, 0.4); /* cinza translúcido */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 850px; /* Aumentado ligeiramente para dar mais folga */
  text-align: left; /* Garante que o texto esteja alinhado à esquerda */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.hero-section h1 {
  font-size: 3.8rem; /* Reduzido mais um pouco para garantir que caiba na linha */
  font-weight: 800;
  color: #e6ffe6;
  line-height: 1.1;
  margin-bottom: 30px;
  white-space: nowrap; /* Impede a quebra de linha */
  overflow: hidden; /* Oculta qualquer transbordamento se ainda não couber */
  /* text-overflow: ellipsis; (removido para não mostrar ...) */
}

.hero-section p {
  font-size: 1.6rem; /* Mantido o tamanho para o parágrafo */
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.4; /* Espaçamento entre as linhas */
  letter-spacing: 0.5px;
  /* Removido propriedades de truncamento */
}


.whatsapp-button {
  background-color: #00c853;
  padding: 18px 36px;
  color: white;
  border: none;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-size: 1.5rem;
  margin-top: 10px;
}

.whatsapp-button:hover {
  background-color: #00b74a;
}

/* Serviços */
.services-section {
  padding: 60px 0;
  background-color: #fff;
}

.services-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
  color: #666;
  font-size: 1.3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #f2fdf6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2e7d32;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

/* Contato */
.contact-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  text-align: left;
}

.contact-box, .hours-box {
  max-width: 400px;
}

.contact-box p,
.hours-box p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #444;
}

.hours-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Rodapé */
footer {
  background-color: #1e1e1e;
  color: #ddd;
  padding: 40px 20px;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

footer h3 {
  color: white;
  margin-bottom: 15px;
}

footer p, footer li, footer a {
  color: #bbb;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.6;
}

footer a:hover {
  color: #00c853;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer .copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 15px;
}