/* Footer estilos */
.footer {
  background-color: #0a4670;
  color: white;
  padding: 40px 40px 15px 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.logo {
  width: 70px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 13px;
  color: #e1e1e1;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  font-size: 13px;
  color: #e1e1e1;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-column a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0 10px;
  opacity: 0.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #e1e1e1;
  flex-wrap: wrap;
}

.highlight {
  color: #f0730c;
}

.lang-currency span {
  margin-left: 20px;
  cursor: pointer;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-column h4 {
    margin-top: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
