/* =====================================================
   RODAPÉ INSTITUCIONAL – CIATA
   ===================================================== */

.ciata-footer {
  background-color: #16365E; /* azul institucional escuro */
  color: #f1f5f9;
  padding: 3rem 1.5rem 2rem;
  font-size: 1rem;
}

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

/* =====================================================
   TÍTULOS
   ===================================================== */

.ciata-footer-title,
.ciata-footer-support h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* =====================================================
   LINKS
   ===================================================== */

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

.ciata-footer-links li {
  margin-bottom: 0.5rem;
}

.ciata-footer-links a {
  color: #FFD000; /* amarelo institucional */
  text-decoration: none;
  font-weight: 500;
}

.ciata-footer-links a:hover,
.ciata-footer-links a:focus {
  text-decoration: underline;
  outline: none;
}

/* =====================================================
   TEXTO DE APOIO
   ===================================================== */

.ciata-footer p {
  margin: 0.25rem 0;
  line-height: 1.5;
}

/* =====================================================
   COPYRIGHT
   ===================================================== */

.ciata-footer-copy {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  color: #e5e7eb;
}

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

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

  .ciata-footer-copy {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* =====================================================
   ACESSIBILIDADE – FOCO VISÍVEL
   ===================================================== */

.ciata-footer a:focus-visible {
  outline: 3px solid #FFD000;
  outline-offset: 3px;
}
