/* ==========================================================================
   FOOTER (DISEÑO PREMIUM, CLEAN & RESPONSIVO)
   ========================================================================== */

footer {
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 2rem 1.5rem;
  color: #cccccc;
  font-family: 'DM Sans', sans-serif;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-grid {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  flex: 0 0 260px;
  transition: transform 0.4s, background 0.4s;
}
.logo{
  transition: transform 0.4s, background 0.4s;
}
.logo:hover{
  transform: scale(1.05);
}
.texto-footer{
  transition: transform 0.4s, background 0.4s;
}
.texto-footer:hover{
  transform: scale(1.05);
}
.logo span {
  color: #888888;
}

.texto-footer {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #999999;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.navegacion {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.5rem;
  flex: 1;
  max-width: 750px;
  margin-left: auto;
}

.footer-grid h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.footer-grid ul li {
  font-size: 0.9rem;
  color: #aaaaaa;
}

.navegacion a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.25s ease;
}

.navegacion .col-1 a:after,
.navegacion .col-2 a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #f7f7f7;
  transition: left .8s;
}
.navegacion a:hover::after{
  left: 0;
}
/* Redes Sociales */
.redes {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.75rem;
  align-items: center;
}

.footer-grid ul.redes li a[aria-label] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 1.1rem;
  color: #ffffff;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.footer-grid ul.redes li a[aria-label]:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000 !important;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: #777777;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVOS (TABLETS Y CELULARES)
   ========================================================================== */

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .logo-grid {
    flex: auto;
  }

  .navegacion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  footer {
    padding: 3rem 1rem 1.5rem 1rem;
  }

  .navegacion {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}