/* FOOTER BASE */
.caba-footer {
  background: #f5f5f3;
  border-top: 1px solid #e0dedb;
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
}

.caba-footer__container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.caba-footer__logo {
  max-width: 140px;
}

/* TEXT */
.caba-footer__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* TITLES */
.caba-footer__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* LINKS */
.caba-footer a {
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.caba-footer a:hover {
  color: #c47a2c;
}

.caba-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caba-footer__list li {
  margin-bottom: 10px;
}

/* SOCIAL */
.caba-footer__social {
  display: flex;
  gap: 15px;
}

.caba-footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid #c47a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* BOTTOM BAR */
.caba-footer__bottom {
  background: #eceae7;
  padding: 15px 20px;
  font-size: 13px;
  text-align: center;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .caba-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .caba-footer__social {
    justify-content: center;
  }
}
