* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  padding: 2rem 2rem 3rem;
  background-color: #6e221c;  /* Mismo color que contacto */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Línea divisoria */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #f5e8a6;  /* Color claro como el título */
  margin-bottom: 2rem;
  opacity: 0.3;
}

/* Logo */
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo-image {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

/* Copyright */
.footer-copyright p {
  color: #f5e8a6;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1.5rem 2rem;
  }
  
  .footer-logo-image {
    width: 60px;
  }
  
  .footer-copyright p {
    font-size: 0.75rem;
  }
}