/* CSS Completo - Ledan Gestão Empresarial */

/* ------------------ Reset e Body ------------------ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7fafc; /* fundo claro */
  color: #0f1724;
  line-height: 1.5;
}

/* Reset imagens e links */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------ Header ------------------ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff; /* branco para header */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .logo {
  height: 130px; /* logo maior */
}

header .brand h1 {
  font-size: 24px;
  margin: 0;
}

header .brand .tag {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #0b5a7a;
  font-weight: bold;
  font-size: 14px;
}

nav a:hover {
  color: #0f1724;
}

/* ------------------ Hero Section ------------------ */
.hero {
  padding: 40px 20px;
  background-color: #f7fafc;
}

.hero-content {
  text-align: center; /* centraliza todo o conteúdo do hero */
}

.hero-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #0b5a7a;
}

.hero-content p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.hero img.office-img {
  display: inline-block;  /* permite centralização com margin auto */
  border-radius: 12px;
  max-width: 800px;       /* ajuste do tamanho do local */
  margin: 20px auto 0;    /* centraliza horizontalmente */
}

/* ------------------ Services Section ------------------ */
.services {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(11,90,122,0.08);
}

.services h3 {
  font-size: 24px;
  color: #0b5a7a;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(11,90,122,0.06);
  width: 250px;
}

.service h4 {
  margin-bottom: 10px;
  color: #0b5a7a;
}

.service p {
  font-size: 14px;
  color: #6b7280;
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.insurance-logos img {
  height: 50px;
}

/* ------------------ Contact Section ------------------ */
.contact {
  padding: 40px 20px;
  background-color: #ffffff;
  margin: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(11,90,122,0.08);
}

.contact h3 {
  margin-bottom: 20px;
  color: #0b5a7a;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6eef2;
  width: 100%;
  font-size: 14px;
}

.contact button {
  background-color: #0b5a7a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.contact button#whatsBtn {
  background-color: #25d366;
}

.contact button:hover {
  opacity: 0.9;
}

/* ------------------ Footer ------------------ */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #6b7280;
  background-color: #f7fafc;
}

/* ------------------ Responsividade ------------------ */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }
}
