/* =========================================
   FOOTER (BASE)
   ========================================= */

.otb-footer {
  background: #7B2C3A;
  color: #ffffff;
}

.otb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;

  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

/* ------------------------------
   Brand / textos
------------------------------ */
.otb-footer-logo {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 8px;
}

.otb-footer-text {
  margin: 6px 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* ------------------------------
   Links
------------------------------ */
.otb-footer-links h4,
.otb-footer-contact h4 {
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 15px;
}

.otb-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.otb-footer-links li {
  margin: 8px 0;
}

.otb-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.otb-footer a:hover {
  text-decoration: underline;
}

/* ------------------------------
   Bottom bar
------------------------------ */
.otb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 16px;
  text-align: center;
}

.otb-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

/* ------------------------------
   Responsivo
------------------------------ */
@media (max-width: 900px) {
  .otb-footer-inner {
    grid-template-columns: 1fr;
  }
}
