/* ===== CSS/footer.css | Amazonía Viajes - Footer profesional ===== */
:root {
  --av-footer-bg: #0a1f12;
  --av-footer-text: #e8e8e8;
  --av-footer-text-muted: #a0a0a0;
  --av-footer-border: rgba(232,192,70,0.3);
}

.av-footer {
  background: var(--av-footer-bg);
  color: var(--av-footer-text);
  padding: 60px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.av-footer__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Columna 1: Marca */
.av-footer__logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--av-verde);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.av-footer__logo:hover { transform: scale(1.03); }
.av-footer__logo span { color: var(--av-dorado); }

.av-footer__desc {
  color: var(--av-footer-text-muted);
  margin-bottom: 20px;
  max-width: 320px;
}

.av-footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.av-footer__social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: grid; place-items: center;
  text-decoration: none; transition: all 0.3s ease;
}
.av-footer__social-link .av-icon {
  width: 16px; height: 16px; stroke: white !important; fill: none !important; stroke-width: 2;
}
.av-footer__social-link:hover {
  background: var(--av-dorado); transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(232,192,70,0.4);
}
.av-footer__social-link:hover .av-icon { stroke: var(--av-texto) !important; }

/* Títulos de columnas */
.av-footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.av-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--av-dorado);
}

/* Listas */
.av-footer__links, .av-footer__contact {
  list-style: none; padding: 0; margin: 0;
}
.av-footer__links li, .av-footer__contact li {
  margin-bottom: 10px;
}
.av-footer__links a, .av-footer__contact a {
  color: var(--av-footer-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.av-footer__links a:hover, .av-footer__contact a:hover {
  color: var(--av-dorado);
  transform: translateX(4px);
}

/* Barra inferior */
.av-footer__bottom {
  margin-top: 50px;
  padding: 20px 20px 30px;
  border-top: 1px solid var(--av-footer-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--av-footer-text-muted);
}
.av-footer__top {
  background: var(--av-dorado);
  color: var(--av-texto);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.av-footer__top:hover {
  background: var(--av-verde);
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .av-footer__container { grid-template-columns: 1fr; gap: 30px; }
  .av-footer__bottom { flex-direction: column; text-align: center; }
  .av-footer__desc { max-width: 100%; }
}

/* ===== Footer con secuencia cromática y hover consistente ===== */

/* Background: invierte el gradiente del header para cerrar el ciclo visual */
.av-footer {
  background: linear-gradient(135deg, #0a1f12 0%, #023877 100%); /* Verde→Azul */
  color: var(--av-footer-text);
  padding: 60px 0 0;
}

/* Hover en iconos: MISMO efecto que header, pero con dorado unificador */
.av-footer__social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.av-footer__social-link:hover {
  transform: translateY(-3px) scale(1.15); /* ← MISMO que header */
  background: var(--av-dorado); /* ← Dorado unificador para footer */
  box-shadow: 0 4px 12px rgba(232,192,70,0.4);
}
.av-footer__social-link:hover .av-icon {
  stroke: var(--av-texto) !important; /* ← Ícono oscuro sobre dorado */
}

/* Link de reseñas de Google */
.av-footer__review-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--av-dorado); text-decoration: none;
  font-weight: 600; transition: transform 0.3s ease;
  border: 2px solid rgb(232, 192, 70);
  padding: 3px 8px;
  border-radius: 15px;
  color: white !important;
}
.av-footer__review-link:hover {
  transform: translateX(4px); color: var(--backg-rs) !important;
}