#nova-main-footer {
  width: 100%;
  background: linear-gradient(135deg, #061523 0%, #071b2d 50%, #03101d 100%);
  color: #ffffff;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  border-top: 1px solid rgba(255,255,255,0.12);
}

#nova-main-footer * {
  box-sizing: border-box;
}

.nova-footer-inner {
  width: 100%;
  max-width: 1900px;
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.45fr 1fr;
  align-items: stretch;
}

.nova-footer-brand,
.nova-footer-links,
.nova-footer-social {
  padding: 25px 36px;
  position: relative;
}

.nova-footer-brand,
.nova-footer-links {
  border-right: 1px solid rgba(255,255,255,0.14);
}

.nova-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nova-footer-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nova-footer-brand img {
  max-width: 235px;
  max-height: 76px;
  object-fit: contain;
  filter: brightness(1.05);
}

.nova-footer-links h4,
.nova-footer-social h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.nova-footer-links nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 22px;
}

.nova-footer-links nav a {
  color: #dce7f5;
  font-size: 13px;
  font-weight: 450;
  text-decoration: none;
  transition: 0.25s ease;
}

.nova-footer-links nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nova-footer-links p {
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #d3dfed;
  font-size: 13.3px;
  font-weight: 500;
}

.nova-footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nova-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.nova-social {
  width: 37px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  transition: 0.25s ease;
}

.nova-social:hover {
  transform: translateY(-2px) scale(1.08);
}

.nova-social.in {
  background: #0a66c2;
}

.nova-social.fb {
  background: #1877f2;
}

.nova-social.ig {
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.nova-social.yt {
  background: #ff0000;
}

.nova-footer-dev {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 4px;
  position: relative;
  z-index: 5;
  transition: 0.3s ease;
}

.nova-footer-dev span {
  color: #b7c5d7;
  font-size: 12px;
  font-weight: 600;
}

.nova-footer-dev img {
  max-width: 159px;
  max-height: 35px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.75);
  opacity: 0.55;
  transition: 0.35s ease;
}

.nova-footer-dev:hover {
  transform: translateY(-4px) scale(1.08);
  z-index: 30;
}

.nova-footer-dev:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 900px) {
  .nova-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nova-footer-brand,
  .nova-footer-links,
  .nova-footer-social {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .nova-footer-links nav,
  .nova-social-icons,
  .nova-footer-social,
  .nova-footer-dev {
    justify-content: center;
  }

  .nova-footer-dev {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ICONOS DE REDES SOCIALES */

.nova-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nova-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .28s ease, box-shadow .28s ease;
}

.nova-social img {
  width: 64px;
  height: 40px;
  object-fit: contain;
  display: block;
  z-index: 2;
}

.nova-social::before,
.nova-social::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.8);
  z-index: 1;
}

.nova-social:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.nova-social:hover::before {
  animation: novaSocialWave 1.2s ease-out infinite;
}

.nova-social:hover::after {
  animation: novaSocialWave 1.2s ease-out infinite;
  animation-delay: .35s;
}

.nova-linkedin::before,
.nova-linkedin::after {
  border: 2px solid #0A66C2;
}

.nova-facebook::before,
.nova-facebook::after {
  border: 2px solid #1877F2;
}

.nova-instagram::before,
.nova-instagram::after {
  border: 2px solid #E4405F;
}

.nova-youtube::before,
.nova-youtube::after {
  border: 2px solid #FF0000;
}

@keyframes novaSocialWave {
  0% {
    opacity: .75;
    transform: scale(.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}