/* FOOTER GLOBAL */
html {
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* mejor que depender solo de height */
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
/* FOOTER PRINCIPAL */
.footer {
  background: #edf2ff;
  border-top: 1px solid #dfe6ff;
  padding: 15px 20px;
  flex-shrink: 0;
  margin-top: auto;

}

/* CONTENEDOR PRINCIPAL */
.footer-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-size: 14px;
  justify-items: center;
  align-items: center;
}

/* COLUMNAS */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}

/* TITULOS */
.footer-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #150b9b;
}

/* TEXTOS */
.footer-text {
  color: #333;
  font-size: 13px;
}

/* ICONOS */
.footer .material-symbols-outlined {
  font-size: 16px;
  color: #6f6f6f;
}

.footer-heart {
  font-size: 14px;
  color: #666;
}

/* LINKS */
.footer a {
  text-decoration: none;
  color: #150b9b;
}

.footer a:hover {
  text-decoration: underline;
}

/* FILA INFERIOR */
.footer-bottom {
  max-width: 1000px;
  margin: 8px auto 0 auto;
  text-align: center;
  font-size: 13px;
  color: #333;
}

.footer-bottom a {
  text-decoration: none;
  color: #150b9b;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-text {
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-title {
    justify-content: center;
  }
}

