/**************************
 * FOOTER MINIMAL BLOCK STYLE
 **************************/
footer.footer-minimal {
  background: #ffffff;
  color: #2a2a2a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* Bloque gris inferior más alto (sin borde) */
.footer-bottom {
  background: #f0f0f0; /* gris suave, uniforme */
  padding: 35px 0; /* altura mayor vertical */
  margin: 0;
  color: #444;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #444;
  letter-spacing: 0.3px;
}

.footer-bottom a {
  color: #444;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s ease-in-out;
}

.footer-bottom a:hover {
  color: #d43396;
  text-decoration: underline;
}

/* Scroll to Top */
.scrollup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(90deg, #d43396 0%, #6541c1 100%);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scrollup:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* CLS Safe */
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

