/*footer.css*/


/* ================================ GENERAL ================================ */
.footer {
  background: #000;
  color: #f5f5f5;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

footer {
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0.6) 5%,
    rgba(255, 223, 80, 1) 50%,
    rgba(212, 175, 55, 0.6) 95%,
    rgba(212, 175, 55, 0) 100%
  );
  z-index: 10;
  pointer-events: none;
}


/* ================================ LOGO + MARCA ================================ */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

.footer-brand p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0;
}

/* ================================ NAVEGACIÓN ================================ */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #f5f5f5;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--dorado);
}

/* ================================ REDES SOCIALES ================================ */
.footer-social a {
  color: var(--dorado);
  font-size: 1.2rem;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* ================================ BOTTOM ================================ */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  color: #aaa;
}

/* ================================ TIPOGRAFÍA ================================ */
.footer-brand p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0;
}

.footer-nav a {
  color: #f5f5f5;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--dorado);
}

/* ================================ RESPONSIVE ================================ */
@media (max-width: 1024px) {
  .footer-nav, .footer-social {
    display: none;
  }

  .footer-bottom {
    font-size: 1rem;
  }
}