/*=============== FOOTER ===============*/


.footer{
  margin-top: 8rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--first-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: 0.3s;
}

.footer__container__itens{
  margin-right: 7rem;
}


.footer_detail {
  color: var(--first-color);
}


.footer__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__subscribe {
  background-color: #fff;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  border-radius: 0.5rem;
}

.footer__input {
  width: 100%;
  padding: 10px 0.5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}


.footer__button1 {
  margin-top: 25px;
}


.footer__data {
  display: grid;
  row-gap: 1.5rem;
}

.footer__information {
  font-size: var(--small-font-size);
}

.footer__social {
  display: inline-flex;
  column-gap: 0.75rem;
}

.footer__social-link {
  font-size: 1rem;
  color: var(--text-color);
  transition: 0.3s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}


@media screen and (min-width: 1200px){

  .footer__container {
   margin-left: 10%;
   width: 90%;
   display: flex;
   justify-content: space-evenly;
  }

 
  .footer__content1{
    width: 20%;
  }
  .footer__container__icones{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    margin-left: 5%;
   
  }
}



@media screen and (min-width: 1000px){
  .footer__container {
    margin-left: 10%;
    width: 90%;
    display: flex;
    justify-content: space-evenly;
   }
 
  
   .footer__content1{
     width: 20%;
   }
   .footer__container__itens{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    margin-left: 5%;
   
  }
 }

 @media screen and (max-width: 1000px){
  
  .footer__container {
    margin-left: 5%;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
   }
 
  
   .footer__content1{
     width: 95%;
     margin-left: 5%;
   
   }
   .footer__container__itens{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    flex-wrap: wrap;
    
   
  }

  .footer__content{
   width: 45%;
   margin-left: 5%;
   margin-top: 1rem;
  }
 }

 @media screen and (max-width: 380px) {
  .footer__container {
    margin-left: 1.5rem;
  }
  

 }