/* Start custom CSS for html, class: .elementor-element-cb83440 *//* Reset e configurações gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabeçalho */
.header {
  background-color: #005792;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Conteúdo principal */
.content {
  padding: 2rem 0;
}

.content section {
  margin-bottom: 2rem;
}

.content h2 {
  font-size: 1.5rem;
  color: #005792;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

.content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Links */
.content a {
  color: #005792;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* Rodapé */
.footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .header p {
    font-size: 1rem;
  }

  .content h2 {
    font-size: 1.25rem;
  }

  .content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.25rem;
  }

  .content h2 {
    font-size: 1.1rem;
  }

  .content p {
    font-size: 0.9rem;
  }
}/* End custom CSS */