/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.bg-dark-blue {
  background-color: #1e3f6f;
}

.text-dark-blue {
  color: #1e3f6f;
}

.text-blue {
  color: #1e3f6f;
  text-decoration: none;
}

.text-blue:hover {
  color: #2c5a9e;
  text-decoration: underline;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  max-width: 200px;
  margin: 0 auto 1rem;
}

.logo-img {
  width: 100%;
  height: auto;
}

/* Main */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.bg-white {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
}

ul.list-unstyled li {
  margin-bottom: 0.5rem;
}

a {
  color: #1e3f6f;
  text-decoration: none;
}

a:hover {
  color: #2c5a9e;
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 1rem;
  position: relative;
  width: 100%;
}

.contato {
  margin-bottom: 1rem;
}

.contato h2 {
  color: white;
  margin-bottom: 1rem;
}

.contato-info {
  gap: 1rem;
}

.contato-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contato-details-icon {
  font-size: 1.5rem;
  color: white;
}

.contato-details h5 {
  color: white;
  margin-bottom: 0.2rem;
}

.contato-details p, .contato-details a {
  color: white;
  margin: 0;
}

.contato-details a:hover {
  color: #2c5a9e;
  text-decoration: underline;
}

.buttom-to-top {
  margin-top: 1rem;
}

.buttom-to-top a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

.buttom-to-top a:hover {
  color: #2c5a9e;
}

/* Responsividade */
@media (max-width: 768px) {
  header {
      padding: 1.5rem 0.5rem;
  }

  .logo {
      max-width: 150px;
  }

  main {
      padding: 1rem;
  }

  .bg-white {
      padding: 1.5rem;
  }

  h1 {
      font-size: 1.5rem;
  }

  h2, h3, h4 {
      font-size: 1.2rem;
  }

  footer {
      padding: 0.5rem;
  }

  .contato-details {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
  }

  .contato-details-icon {
      font-size: 1.2rem;
  }
}