/* Footer Principal */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, indigo 50%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Main Section */
.footer-main {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

/* Logo e Descrição */
.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.footer-subtitle {
  color: white;
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 300;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}


.footer-section {
  text-align: center;
}

.footer-section h3 {
  color: lime;
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-link i {
  position: relative;
  z-index: 1;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  padding: 10px;
  border-radius: 15px 15px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  backdrop-filter: blur(10px);
}


.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1em;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: lime;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(45deg, lime, #32CD32);
  color: indigo;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(45deg, #32CD32, lime);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
}

.footer-copyright .brand-name {
  color: lime;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.footer-copyright .creator {
  color: #B8B8FF;
  font-style: italic;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, lime, #32CD32);
  color: indigo;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    gap: 30px;
    text-align: center;
  }

  .LogoPart1,
  .LogoPart2 {
    font-size: 2em;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1em;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-main {
    padding: 30px 0;
  }

  .LogoPart1,
  .LogoPart2 {
    font-size: 1.7em;
  }

  .footer-links a {
    padding: 6px 12px;
    font-size: 0.9em;
  }

  .footer-copyright {
    font-size: 0.9em;
  }

  .newsletter {
    padding: 15px;
  }
}

.alerta-nova-genesis {
  background-color: Indigo;
  color: snow;
  text-align: center;

}

.alerta-nova-genesis h3 {
  animation: sireneCores 1.5s linear infinite;
}
/* Footer Final */