/* Estilos Nav Horizontal */
/* NAVBAR LINKS */
.nav .nav-link {
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 550;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

/* texto hover */
.nav .nav-link:hover {
  color: #228ffc;
}

/* línea inferior animada */
.nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #228ffc;
  transition: width 0.3s ease;
}

/* activa o hover */
.nav .nav-link:hover::after,
.nav .nav-link.active::after {
  width: 100%;
}

/*Icons Navbar*/

.bi-facebook{
    font-size: 2rem;
    line-height: 1;
    padding: 0px;
    margin: 0px;
}


.icon-ig{
    background: #833ab4;
    background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.icon-wa {
  background-color: #25d366;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.icon-fb,
.icon-ig,
.icon-wa {
    transition: transform .2s ease;
}

.icon-fb:hover,
.icon-ig:hover,
.icon-wa:hover{
    transform: scale(1.25);
}


/*Footer*/
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column > img {
  max-width: 100%;
  height: auto;
}

.footer-title, .card-title{
  font-size: 20px!important;
}

.mail-icon{
  color: inherit;
  text-decoration: none;
}

/* Chat Button Styles */
.chat-button {
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}
