/* Footer Styles - Baseado no CSS do tema Diálogo Público */

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul svg {
  color: #ffffffaa;
  transition: color 0.2s ease;
}

ul svg:hover {
  color: #ffffff;
}

footer {
  margin-top: 5rem;
}

footer h4 {
  margin: 0;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.bg-blue-900 {
  background-color: #1A3560;
}

.p-3\.5 {
  padding: 0.875rem; 
}

.w-full {
  width: 100%;
}

.m-auto {
  margin: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem; 
}

.w-72 {
   width: 250px;
   height: 71px;
}

.gap-16 {
  gap: 4rem; 
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.my-4 {
  margin-top: 1rem; 
  margin-bottom: 1rem; 
}

.text-white {
  color: #fff;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem; 
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem; 
  line-height: 1.25rem; 
}

.text-yellow-5 {
  color: #eab308;
}

.text-inherit {
  color: inherit;
}

.rounded-sm {
  border-radius: 0.125rem; 
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.mb-0 {
  margin-bottom: 0px;
}

.justify-between {
  justify-content: space-between;
}

.justify-bewteen {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.pt-4 {
  padding-top: 1rem; 
}

.border-t {
  border-top-width: 1px;
}

.border-blue-600 {
  border-color: #1C519B;
}

.py-4 {
  padding-top: 1rem; 
  padding-bottom: 1rem; 
}

.fill-blue-200 {
  fill: #bfdbfe;
}

.fill-inherit {
  fill: inherit;
}

.fill-current {
  fill: currentColor;
}

.fill-white {
  fill: #fff;
}

.hover\:text-inherit:hover {
  color: inherit;
}

.focus\:outline-2:focus {
  outline-width: 2px;
}

.focus\:outline-blue-500:focus {
  outline-color: #3b82f6;
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:text-blue-300:hover {
  color: #93c5fd;
}

.hover\:fill-blue-300:hover {
  fill: #93c5fd;
}

/* Responsive Design */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:border-t {
    border-top-width: 1px;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:justify-end {
    justify-content: flex-end;
  }
  
  .lg\:border-t {
    border-top-width: 1px;
  }
}

/* Utilities adicionais para compatibilidade */
.gap-sm {
  gap: 0.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Estilos para ícones de redes sociais */
footer svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: fill 0.2s ease;
}

footer a:hover svg {
  fill: #93c5fd;
}