* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #0a2a43;
}

.hero {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.primary {
  background: #d26b00; /* laranja */
  color: white;
}

.secondary {
  border: 2px solid #0a2a43;
  color: #0a2a43;
}
.about {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}
.services {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.service-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service {
  background: white;
  border-radius: 8px;
  padding: 25px;
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service h3 {
  color: #0a2a43;
  margin-bottom: 10px;
}
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact a {
  color: #0a2a43;
  text-decoration: none;
  font-weight: bold;
}
.map {
  padding: 50px 20px;
  text-align: center;
}

.map h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.map iframe {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
}

.map-link {
  margin-top: 15px;
}

.map-link a {
  color: #d26b00;
  font-weight: bold;
  text-decoration: none;
}
.hours {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.hours h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.hours-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hours-box p {
  background: white;
  padding: 20px 25px;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.footer {
  background: #0a2a43;
  color: white;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}
