/* Rodapé alinhado ao index.php (landing Tailwind) - usado em index2, Tabelas, Equipe */

.cfl-footer{
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 1.5rem;
  color: #fff;
  box-sizing: border-box;
}
.cfl-footer *,
.cfl-footer *::before,
.cfl-footer *::after{
  box-sizing: border-box;
}

.cfl-max{
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.cfl-main{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px){
  .cfl-main{
    flex-direction: row;
    align-items: center;
  }
}

.cfl-col-info{
  text-align: center;
}
@media (min-width: 768px){
  .cfl-col-info{
    text-align: left;
  }
}

.cfl-h2{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.cfl-person{
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px){
  .cfl-person{
    justify-content: flex-start;
  }
}

.cfl-person-name{
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: #fff;
}

.cfl-person .cfl-ico{
  color: #eab308;
  font-size: 1.25rem;
}

.cfl-links{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cfl-links a{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cfl-links a:hover{
  color: #fff;
}
.cfl-links a.cfl-ig:hover{
  color: #eab308;
}

.cfl-col-media{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cfl-logos{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px){
  .cfl-logos{
    justify-content: flex-end;
  }
}

.cfl-logos img{
  height: 4rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.95;
}
.cfl-logos img.cfl-logo--sm{
  height: 3.5rem;
  max-width: 180px;
}

.cfl-tags{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cfl-tags a{
  color: #71717a;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.cfl-tags a:hover{
  color: #eab308;
}

.cfl-bottom{
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #52525b;
  font-size: 0.875rem;
}
.cfl-bottom p{
  margin: 0.25rem 0;
}
.cfl-bottom a{
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cfl-bottom a:hover{
  color: #eab308;
}
