@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 14px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  background-color: #f1f1f1;
  border-radius: 50%;
  border-style: solid;
  border-width: thin;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s, background-color 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background-color: #e6e6e6;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}



.youtube-lazy {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.youtube-lazy:hover {
  transform: scale(1.02);
}

.youtube-lazy .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('https://img.icons8.com/ios-filled/100/ffffff/play-button-circled.png') no-repeat center center;
  background-size: contain;
  opacity: 0.9;
}

.f1-home{
  font-size: 25px;
  font-weight: 40;
  line-height: 140%;
}



.slider-desktop {
  width: 100%;
  height: 800px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-desktop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ltpreg li:nth-child(odd) {
  background-color: #f0f0f0;
}

.ltpreg li:nth-child(even) {
  background-color: #ffffff;
}

.bkpf {
background-color: rgba(115,112,181,0.9); /* #7370B5; */
color: #fff;
}
.bkpf h2{
  color: #fff !important;
}

@media (max-width: 768px) {
  .slider-desktop {
    height: 40vh;
  }

  .slider-desktop img {
    height: 100% !important;
    width: auto !important;
    object-fit: cover;
  }
  
  .t-movil{
    font-size: 28px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #fff !important;
    text-shadow: 1px 1px 10px #000 !important;
    max-width: 90% !important; 
    word-wrap: break-word !important;
    white-space: normal;
  }

  .s-movil{
    display: none !important;
  }

  .t1-home{
    line-height: 45px;
  }

  .f1-home{
    font-size: 20px;
  }

  .panel-body{
    padding: 0 !important;
  }
  
  .features-list li {
    margin: 10px 20px;
  }

  .breadcrumbs_section h1{
    font-size: xx-large !important;
  }

  .media-left{
    display: none;
  }

}