.fixed-container {
  padding: 20px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  transition: margin-right 0.3s ease;
  z-index: 100;
}

.fixed-container.active {
  padding-right: 0px;
}

.yakoContainer {
  font-family: "Nunito Sans", sans-serif;
  padding: 18px;
  text-align: center;
  color: white;
  background: linear-gradient(to right, #525283, #282754);
  border-radius: 25px;
  transition: background 0.3s ease, color 0.3s ease;
}

.yakoContainer > p {
  margin: 0px;
}

.sentence-one {
  text-align: left;
  padding: 18px 0px 15px;
}

.sentence-two {
  text-align: center;
  line-height: 20px;
}

.text-xl {
  font-size: 40px;
  line-height: 40px;
  -webkit-text-stroke: .2px black;
  z-index: 10;
  position: relative;
}

.yaco {
  background-image: url("/static/avatar/CHAT_BOT03.svg"); 
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  aspect-ratio: 1/ 1;
  position: absolute;
  right: 2px;
  top: -40px;
  transition: background-image 0.3s ease, right 0.3s ease, top 0.3s ease, left 0.3s ease;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}

@media (max-width: 992px) {
  .yaco {
    width: 90px;
    top: -20px;
  }
}

.fixed-container.active .yaco {
  background-image: url("/static/avatar/CHAT_BOT01.svg");
  right: unset;
  top: -30px!important;
  left: -20px;
}

.fixed-container.active .sentence-one,
.fixed-container.active .sentence-two {
  display: none;
}

.sentence-three, .sentence-four {
  display: none;
  z-index: 10;
  position: relative;
}

.fixed-container.active .sentence-four {
  display: flex;
  transition: display 0.3s ease;
}

.fixed-container.active .sentence-three {
  text-align: right;
  font-size: small;
  display: block;
  margin: 10px 15px 10px;
  line-height: 12px;
  transition: display 0.3s ease;
}

.sentence-four > a {
  text-decoration: none;
  color: black;
}

.whatsapp,
.llamadaVirtual,
.videollamada {
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  margin-right: 8px;
  transition: background-image 0.3s ease;
}

.whatsapp {
  background-image: url("/static/avatar/CHAT_WSP.svg"); 
}

.llamadaVirtual {
  background-image: url("/static/avatar/CHAT_LLAMADA.svg");
}

.videollamada {
  background-image: url("/static/avatar/CHAT_VIDEO.svg");
}

.diplay-flex {
  display: flex;
  border-radius: 50px;
  background: #ffffffa3;
  padding: 5px;
  padding-right: 20px;
  align-items: center;
  transition: background 0.3s ease;
}

.diplay-flex:hover {
  background: white;
}

.sentence-four {
  flex-direction: column; /* Asegura que los elementos se dispongan verticalmente */
  gap: 5px; 
}