/* Fundo principal */
body {
  background-color: #0f0a1e;
  color: #f5f5f7;
}

/* Navbar */
.navbar {
  background-color: #1c1533;
  /* Painéis e caixas */
}

.navbar .nav-link {
  color: #f5f5f7;
  font-size: 1.8rem;
  margin: 0 15px;
}

.navbar .nav-link:hover {
  transform: scale(1.25, 1.25);
  transition: transform 0.1s ease;
  ;
}

/* Logo */
.navbar img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

/* Banner */
.banner {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  filter: blur(8px) brightness(0.7);
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #f5f5f7;
  /* Texto principal */
}

.banner-content h2 {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
  color: #f5f5f7;
  /* Texto secundário */
}

.cta-btn {
  background-color: #311981;
  /* Cor primária */
  color: #f5f5f7;
  padding: 15px 40px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #280e57;
  /* Cor secundária no hover */
}

/* Feature Cards */
.feature-card {
  background-color: #1c1533;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #150475;
}

.feature-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #b0a9c1;
  /* Texto secundário */
}

/* Info Section */
.info-section {
  margin: 60px auto;
  padding: 40px;
  background-color: #1c1533;
  /* Painéis e caixas */
  border-radius: 20px;
  color: #f5f5f7;
  /* Texto principal */
}

.info-section h2 {
  color: #e41c78;
  /* Cor primária para títulos */
  margin-bottom: 20px;
}

.card {
  background-color: #2a2145;
  /* Cartões e blocos */
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  /* Texto secundário */
}

.card h5 {
  color: #ffd54f;
  /* Destaque e gráficos */
  margin-bottom: 10px;
}

.card p {
  color: #b0a9c1;
  /* Texto secundário */
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #000000;
}

/* Footer */

footer {
  background-color: #1c1533;
  padding: 40px 0;
  text-align: center;
  color: #b0a9c1;
}

.footer-link {
  color: #3ec1d3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #ffd54f;
}

/* Efeito de sobreposição nos ícones do footer */
.icon-container {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.footer-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  transition: opacity 0.3s ease;
}

.icon-default {
  opacity: 1;
}

.icon-hover {
  opacity: 0;
}

.icon-container:hover .icon-default {
  opacity: 0;
}

.icon-container:hover .icon-hover {
  opacity: 1;
}