:root {
  /* Vermelho vibrante para destaques e interações */
  --color-primary: #e63946;

  /* Preto profundo para fundos e áreas principais */
  --color-dark: #1c1c1c;

  /* Cinza médio para textos secundários e bordas */
  --color-gray: #6c757d;

  /* Cinza claro para textos complementares e ícones */
  --color-light-gray: #b0b0b0;

  /* Branco suave para contraste e áreas claras */
  --color-light: #f8f9fa;
}

footer {
  height: auto;
  width: 100%;
  background-image: linear-gradient(135deg, #2c3e50, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer_content {
  padding: 10px 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between !important;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo_text {
  display: flex;
  flex-direction: column;
  width: 300px;
  text-align: justify;
  gap: 30px;
}

.logo_text img {
  height: 100px;
  width: 100px;
  
}

.logo_text span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-light-gray);
  margin-top: -20px;
}

.redes_sociais {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.redes_sociais a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-light-gray);
  transition: .5s ease;
}

.redes_sociais a:hover {
  color: var(--color-primary);
}

.group_footer h2 {
  text-align: start;
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-light);
}

.group_footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-left: -29px;
  gap: 10px;
}

.group_footer ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.group_footer ul li i {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-light-gray);
}

.group_footer ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-light-gray);
}

.group_footer ul li a:hover {
  color: var(--color-primary);
}

.copyrigth {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.copyrigth p {
  margin: auto;
  color: var(--color-light-gray);

}
@media screen and (max-width:768px) {
  .redes_sociais a i{
    font-size: 1.5rem !important;
  }
  .logo_text{
    width: 100%;
  }
  .group_footer h2 {
    font-size: 1.4rem;
  }
}