/* Footer general */
.footer {
  background-color: #7b5a44; /* Marrón */
  color: #fff;
  padding: 50px 40px;
  position: relative;
  font-family: Arial, sans-serif;
}

/* Contenido dividido en dos columnas */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Texto a la izquierda */
.footer-text p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

/* Iconos a la derecha */
.footer-icons a {
  color: #2d2d2d;
  margin: 0 10px;
  font-size: 30px;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #f1c40f; /* Dorado al pasar */
}

/* Botón scroll-top */
.scroll-top {
  position: absolute;
  top: -10px;
  right: 30px;
  background: #fefaf3;
  color: #5a3b2d;
  padding: 14px 16px;
  border-radius: 6px;
  border: 2px solid #7b5a44;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.scroll-top i {
  font-size: 20px;
}

.scroll-top:hover {
  background: #f1c40f;
  color: #fff;
  transform: translateY(-3px);
}
