:root{
  --color-neutral-0: #0c0c0c;
  --color-neutral-10: #171717;
  --color-neutral-30: #a8a29e;
  --color-neutral-40: #f5f5f5;
}

footer{
  width: 100%;
  color: var(--color-neutral-40) ;
  margin-top: 300px;
}

.footer-link{
  text-decoration: none;
  border-radius: 50px;
}

#footer_content{
  background-color: var(--color-neutral-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 3.5rem;
}

#footer_contacts h1{
  margin-bottom: 1.25rem;
}

#footer_social_media{
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

#footer_social_media .footer-link{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%; 
  color: var(--color-neutral-40);
  transition: all 0.4s;
}

#footer_social_media .footer-link:hover{
  opacity: 0.8;
}

#instagram{
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
  font-size: 17px;
}

#tiktok{
  background-color: #000; 
}

.footer-list{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-list .footer-link{
  color: var(--color-neutral-30);
  transition: all 0.4s;
}

.footer-list .footer-link:hover{
  color: #7f37c9;
}

#footer_subscribe{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#footer_subscribe p{
  color: var(--color-neutral-30);
}

#input_group{
  display: flex;
  align-items: column;
  background-color: var(--color-neutral-0);
  border-radius: 4px;
}

#footer_copyright{
  display: flex;
  justify-content: center;
  background-color: var(--color-neutral-0);
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 100;
  text-aling: center;
}


#footer_patrocineo img{
  border-radius: 50%;
  margin-right: 20px;
  margin-bottom: 10px;
}

#footer_patrocineo a img{
  width: 50px;
}


@media screen and (max-width: 768px) {
  #footer_content{
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  #footer_copyright{
  text-aling: center;
}
}

@media screen and (max-width: 426px) {
  #footer_content{
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 2rem;
  }
  
  #footer_copyright{
  text-aling: center;
}
}