.container-fluid.container04 {
  background-color: #003399;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#conheca-title {
  font-family: "Century Gothic", "Century Gothic MT", Calibri, "Trebuchet MS",
  sans-serif;
  font-size: 38px;
  color: #fff;
  margin-bottom: 0; /* Garante que não haja margem inferior no título */
  margin-left: -480px;
}

.img-icon {
  width: 40px;
  margin-bottom: 10px; /* Espaço entre a imagem e o texto */
}

.first-line-elements,
.second-line-elements,
.third-line-elements,
.forth-line-elements {
  display: flex;
  justify-content: space-around; /* Espaçamento entre os elementos */
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.element-link {
  text-decoration: none;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: inherit !important;
}

.curva,
.curva-first-part {
  width: 250px; /* Define uma largura fixa para os blocos, ajuste conforme necessário */
  text-align: center;
  padding: 10px;
  transition: border 0.3s ease;
  cursor: pointer; /* Mostra que o item é clicável */
  border: 1px solid transparent; /* Borda inicial invisível */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #fff;
}
.curva-first-part:hover {
  border: 1px solid #000; /* Borda ao passar o mouse */
}
.curva:hover {
  border: 1px solid #000; /* Borda ao passar o mouse */
  color: #0bd692;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup:target {
  display: block; /* Exibe o pop-up quando a âncora é clicada */
}

.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #003399;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 10px;
}

/* Estilo do botão de fechar */
.close {
  color: #003399;
  float: right;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-top: -9px;
  margin-right: -9px;
  
}

.close:hover,
.close:focus {
  color: #0041c4af;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1199px){
  .conheca-title {
    font-family: "Century Gothic", "Century Gothic MT", Calibri, "Trebuchet MS",
    sans-serif;
    font-size: 30px;
    color: #fff;
    margin-bottom: 0; /* Garante que não haja margem inferior no título */
    margin-left: 0px;
  }

}
@media (max-width: 767px){
  .conheca-title {
    font-family: "Century Gothic", "Century Gothic MT", Calibri, "Trebuchet MS",
    sans-serif;
    font-size: 30px;
    color: #fff;
    margin-bottom: 0; /* Garante que não haja margem inferior no título */
    margin-left: 0px;
  }

}

