/* =====================================================
   CIATA FOOTER
   ===================================================== */

.ciata-footer {
  margin-top: 3rem;
  background: #16365E;
  color: #e8eef5;
  border-top: 5px solid #D9A300;
}

.ciata-footer a {
  color: #ffffff;
  text-decoration: none;
}

.ciata-footer a:hover,
.ciata-footer a:focus {
  color: #F4E3A3;
  text-decoration: underline;
}

.ciata-footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ciata-footer-column {
  min-width: 0;
}

.ciata-footer-title,
.ciata-footer h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 .85rem;
}

.ciata-footer p {
  margin: 0 0 .8rem;
}

.ciata-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ciata-footer-links li + li {
  margin-top: .55rem;
}

/* =====================================================
   REDES SOCIAIS
   ===================================================== */

.ciata-footer-social li a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color .18s ease, transform .18s ease, opacity .18s ease;
}

.ciata-footer-social li a:hover,
.ciata-footer-social li a:focus {
  color: #F4E3A3;
  transform: translateY(-1px);
}

.ciata-footer-social img {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.ciata-footer-social li a:hover img,
.ciata-footer-social li a:focus img {
  transform: scale(1.08);
  opacity: 0.95;
}

/* =====================================================
   BLOCO DE APOIO
   ===================================================== */

.ciata-footer-support p {
  color: #dbe7f2;
}

.ciata-footer-support form {
  margin-top: .9rem;
}

.ciata-footer-support-note {
  margin-top: .65rem;
  font-size: .92rem;
  color: #c7d4e0;
}

/* =====================================================
   BASE INFERIOR
   ===================================================== */

.ciata-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ciata-footer-copy {
  margin: 0;
  color: #c7d4e0;
  font-size: .95rem;
}

.ciata-footer-copy + .ciata-footer-copy {
  margin-top: .2rem;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (min-width: 860px) {
  .ciata-footer-container {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: start;
  }
}