/* Íconos Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

#footer {
  width: 100%;
  padding: 40px 20px;
  /*background-color:  rgb(5, 39, 36);*/
  background: linear-gradient(
    to bottom,
    rgb(11, 79, 64),
    rgb(4, 35, 33)
  );
  color: #b2c3c1;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-section {
  text-align: center;
  padding-top: 25px;
}

.footer-section h4{
  font-family:Arial, Helvetica, sans-serif;
  color: #e1ecef;
  font-size: 53;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.footer-section ul li {
  margin: 4px 0;
}

.footer-section ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;                  
  color: #728785;                    
  font-weight: 100;  
  text-decoration: none;
  transition: color 0.25s ease 0.06s;
}

.footer-section ul li a:hover {
  color: #e1ecef; 
}

.footer-logo img {
  width: 100px;
  height: auto;
}



.contact-info  {
  padding-top: 25px;
  
}

.contact-info p {
  margin: 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #b2c3c1;
  
}

.contact-info a {
  margin: 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

#phone {
  color: #eee; 
}

#phone:hover {
    color: #5bfbdb; 
}


.social-links {
  margin-top: 40px;
}

.social-links a {
  margin: 0 10px;
  font-size: 22px; 
  color: #eee;
  text-decoration: none;
  transition: color 0.25s ease 0.06s;
}

#face:hover {
    color: #0c08e4; 
}

#insta:hover {
    color: #e4405f;
}

#linkd:hover {
    color: #0077b5;
}


/*BOTOM*/
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #7e7e7e;
}

.footer-bottom a{
  color: #7e7e7e;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }
}


@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-section {
    flex: 1;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }
}

