* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  text-align: justify;
}

.top-bar {
  background: #2d3d47;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.banner {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.container {
  padding: 20px;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-info h2 {
  color: #333;
  margin-bottom: 5px;
}

.servico {
  text-align: right;
}

.content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.left, .right {
  flex: 1;
  min-width: 280px;
}

.left h3, .right h3 {
  margin: 15px 0 5px;
}

.img-left {
  margin-top: 15px;
  width: 100%;
  max-width: 100%;
}

.img-right {
  margin-top: 10px;
  width: 70%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .servico {
    text-align: left;
  }

  .content {
    flex-direction: column;
  }

  .img-left, .img-right {
    width: 100%;
  }
}


.footer {
  background: #2d3d47;
  color: #fff;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.footer-section p {
  margin: 5px 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
  }
}










