/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;

  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-text {
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-text {
    display: inline;
  }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse 2.5s infinite;
}



.a1 {
    color: rgb(30, 74, 156);
}

.heros {
  position: relative;
  color: #fff;
  background:
  linear-gradient(
      rgba(11, 18, 32, 0.82),
      rgba(11, 18, 32, 0.82)
    ),
    url("../imagenes/fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.heros .h5 {
  position: relative;
  color: #fff;
}

.heros .badge{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.shadow-soft{
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}


.heros .container {
  position: relative;
  z-index: 1;
}

.nosotros-bg {
  position: relative;
  color: rgb(13, 110, 253, 0.15);

  background-image:
    linear-gradient(
      rgba(11, 18, 32, 0.82),
      rgba(11, 18, 32, 0.82)
    ),
    url("../imagenes/fondo1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.nosotros-bg .container {
  position: relative;
  z-index: 2;
}

.nosotros-bg h2 {
  color: oklab(100% 0 -0.00011);
}

.nosotros-bg p {
  color: rgba(0, 0, 0, 0.85);
}

.nosotros-bg .card {
  background: rgba(255, 255, 255, 0.95);
  border: 0;
}

.nosotros-bg .icon-pill {
  background: rgba(13, 110, 253, 0.15);
  color: #0d6efd;
}

/*FOOTER*/

.footer-main {
  background: linear-gradient(
    180deg,
    #0b1220 0%,
    #0f172a 100%
  );
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-main .footer-link {
  display: inline-block;
  margin-top: 4px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s ease;
}

.footer-main .footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-main .heart {
  display: inline-block;
  margin: 0 2px;
  animation: pulseHeart 2s infinite;
}

