/* FOOTER PIE DE PAGINA */
.footer {
  background: #373737;
  color: #fff;
  padding: 40px 0 15px 0;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  gap: 24px;
}

.footer-info h3 {
  margin-bottom: 12px;
  color: #aeff00;
  font-size: 1.35rem;
}

.footer-info p {
  margin: 6px 0;
  font-size: 1rem;
}

/*color iconos ubicacion footer*/
.footer-info i {
  margin-right: 8px;
  color: #aeff00;
}

/* iconos social direccion */
.footer-social{
  display: flex;
  flex-direction: row;      /* ✅ antes tenías "vertical" (inválido) */
  align-items: flex-start;      /* ✅ alinea texto + iconos al centro */
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2px;                /* ✅ separa "Síguenos" de los iconos */
  min-width: 170px;
  margin-left: 0;
}

.footer-social h4{
  margin: 8px;                /* ✅ quita desplazamientos raros */
  font-size: 1.1rem;
  color: #fff;
  line-height: 1;           /* ✅ evita que el texto "baje" */
  padding-top: 1px;         /* opcional: micro ajuste */
}

.footer-social a {
  color: #4d4d4d;
  background: #262626;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin-right: 12px;
  margin-bottom: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  transition: color 0.18s, background 0.2s, transform 0.15s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #AEFF00;
  color: #fff;
  transform: scale(1.13);

}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.98rem;
  color: #ffffff;
  border-top: 1px solid #5a5a5a;
  padding-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 16px;
  }

  .footer-social {
    margin-top: 8px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-social h4 {
    margin-right: 18px;
    margin-bottom: 0;
  }
}

@media (max-width: 450px) {
  .footer-info h3 {
    font-size: 1.07rem;
  }

  .footer-container {
    gap: 18px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 1.1em;
    margin-right: 6px;
  }
}