body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
}

.header-section {
  text-align: center;
  padding: 20px;
  background-color: #F2C811;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  border-radius: 10px;

}
.header-section h1 {
  font-size: 2rem;
  margin: 10px 0;
}
.header-section p {
  font-size: 1rem;
  color: #5a5a5a;
}
.nav-tabs {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}
.nav-tabs button {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
}
.content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 20px;
}
.content-text {
  max-width: 40%;
}
.content-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.content-text p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #5a5a5a;
}
.content-text a {
  color: #0078d4;
  text-decoration: none;
}
.content-image img {
  max-width: 100%;
  border-radius: 8px;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0e1726;
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.9rem;
  color: #0e1726;
  margin-bottom: 15px;
}

.about-section {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  border-radius: 10px;
  height: 300px;
}

.about-content {
  flex: 2;
  padding: 10px;
}

.about-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0e1726;
  margin-bottom: 10px;
}

.about-description {
  font-size: 1rem;
  color: #0e1726;
  margin-bottom: 15px;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 40px;
  text-align: center;
}

.contact-title {
  font-size: 2em;
  color: #0e1726;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 1.1rem;
  color: #0e1726;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005a8c;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    height: auto;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }
}
