/* Estilos Globais */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #f9f9f9;
}

.section {
  width: 90%;
  margin: 1rem auto;
  display: grid;
  gap: 1rem;
}
p {
  line-height: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;


}

/* Seção 1: 2fr texto, 1fr botões */
.section-1 {
  grid-template-columns: 2fr 1fr;
}

/* Seção 2 e 4: 1fr texto */
.section-2,
.section-4,
.section-6 {
  grid-template-columns: 1fr;
}

/* Seção 3: 1fr imagem, 2fr texto */
.section-3 {
  grid-template-columns: 1fr 3fr;
}

/* Seção 5: 2fr texto, 1fr imagem */
.section-5 {
  grid-template-columns: 3fr 1fr;
}

.content {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.content h2 {
  margin-top: 0;
  color: #0D47A1;
}

.image {
  background-color: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .section-1,
  .section-3,
  .section-5 {
    grid-template-columns: 1fr;
  }
}

/* Centraliza todos os títulos h2 com a classe .content-title */
.content-title {
  text-align: center;
}

/* Justifica todo o texto dos parágrafos e descrições */
.content-description,
.content-faq-extra p,
.content-list {
  text-align: justify;
  text-justify: inter-word; /* Melhora a distribuição do texto justificado */
}

/* Mantém subtítulos (h3) alinhados à esquerda por padrão */
.content-subtitle {
  text-align: left;
}

/* Ajustes adicionais para elementos específicos */
.content-box {
  text-align: justify; /* Garante herança para elementos internos */
}

/* Mantém botões e CTA alinhados à esquerda */
.buttons,
.call-to-action {
  text-align: left;
}

/* Estilos para os containers dos ícones para ocupar a largura disponível */
.icon {
  display: flex; /* Para alinhar o ícone no centro */
  justify-content: center; /* Alinha horizontalmente */
  align-items: center; /* Alinha verticalmente */
  width: 100%; /* Ocupa toda a largura disponível do elemento pai */
  margin-bottom: 15px; /* Espaçamento abaixo do ícone */
  /* A altura será ajustada automaticamente com base no tamanho do ícone e no padding/margin internos */
}

/* Estilos para os ícones (usando Font Awesome como exemplo) */
.icon i {
  font-size: 3em; /* Tamanho do ícone (você pode ajustar) - a altura do container se ajustará a isso */
  color: #007bff; /* Cor primária (você pode alterar) */
  /* Outros estilos para o ícone, como sombras, etc. */
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Estilos específicos para cada seção, se necessário */
.section-3 .icon i {
  color: #28a745; /* Cor específica para o ícone da seção 3 */
}

.section-6 .icon i {
  color: #ffc107; /* Cor específica para o ícone da seção 6 */
}

.section-5 .icon i {
  color: #dc3545; /* Cor específica para o ícone da seção 5 */
}

/* Opcional: Estilos para telas menores (responsividade) */
@media (max-width: 768px) {
  .icon {
      margin-bottom: 10px;
  }
  .icon i {
      font-size: 2.5em;
  }
}

.section-links {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}

.section-subtitle {
  font-size: 1.4rem;
  color: #1565C0;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.modern-button {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  color: #0D47A1;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 5px solid #2196F3;
}

.modern-button:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(33, 150, 243, 0.2);
}

.link-icon-box {
  background: #2196F3;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  margin-right: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-box {
  margin-top: 2rem;
  background-color: #e3f2fd;
  padding: 1.5rem;
  border-left: 5px solid #0D47A1;
  border-radius: 10px;
  text-align: center;
}

.help-box h4 {
  font-size: 1.2rem;
  color: #0D47A1;
  margin-bottom: 0.5rem;
}

.help-box p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.help-button {
  background: #0D47A1;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.help-button:hover {
  background: #1565C0;
}


