/* ====== FOOTER PREMIUM ====== */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  color: #ddd;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Contenedor Grid */
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* Títulos de columna */
.footer__col h4 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer__col h4::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ffb347; /* dorado degradado */
  margin-top: 6px;
  border-radius: 2px;
}

/* Listas de enlaces */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin: 12px 0;
}

.footer__links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: #ffb347;
  transform: translateX(5px);
}

/* Logo y descripción */
.footer__col .logo img {
  width: 150px;
  transition: transform 0.3s ease;
}

.footer__col .logo img:hover {
  transform: scale(1.1);
}

.footer__col .section__description {
  margin: 15px 0 20px;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}

/* Botón Reserva */
.footer .btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  color: #1a1a1a;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 180, 71, 0.4);
}

.footer .btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 180, 71, 0.6);
}

/* Redes Sociales */
.footer__socials {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer__socials a img {
  width: 30px;
  transition: transform 0.3s, filter 0.3s;
  /* eliminamos el filter que los volvía blancos */
}

.footer__socials a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); /* agrega un ligero efecto de resplandor */
}


/* Barra inferior */
.footer__bar {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 180, 71, 0.3);
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer__container {
    gap: 30px;
  }
  .footer__col h4::after {
    width: 40px;
  }
}

@media screen and (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__col .btn {
    margin-top: 15px;
  }
}
