/*
  footer.css
  ─────────────────────────────────────────────────────────────
  Estilos del pie de página.
*/

footer {
  background: var(--rojo-deep);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Línea dorada en la parte superior */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--dorado), transparent);
}

.footer-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

/* Divisor con rombo */
.footer-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
  margin: 1.5rem auto;
}
.footer-divider::before,
.footer-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,160,23,0.2);
}
.footer-divider-dot {
  width: 6px;
  height: 6px;
  background: var(--dorado);
  transform: rotate(45deg);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.footer-credit {
  font-size: 0.72rem;
  color: #2f8f8b;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: #2f8f8b;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: #ffffff;
}