/* Footer.css */
.footer {
  font-family: GeneralSans, sans-serif;
  font-weight: 300;
  background-color: #373737; /* Rojo solicitado */
  color: white;
  padding: 20px;
  margin-top: auto;
}

.footer-content {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  margin: 0;
  font-size: 0.9em;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.footer-left svg {
  margin-right: 8px;
}

.footer-right p {
  margin: 0;
  font-size: 0.9em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-layout {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}