body {
  padding-top: 70px;
}

.hero {
  height: 80vh;
  background: url('../img/parque.jpg') center/cover;
}

/*.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}*/
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.1);
  animation: none; /* se detiene el latido al pasar el mouse */
}

/* Animación latido */
@keyframes whatsappPulse {
  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);
  }
}


.marcador.personalizado {
  padding: 2px 10px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
}

.marcador-1 { background:#007bff; }
.marcador-2 { background:#ffc107; color:black; }
.marcador-3 { background:#28a745; }
.marcador-6 { background:#17a2b8; }

.navbar-pit {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-pit.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}

/* LOGO */
.logo-pit {
  height: 120px;
  transition: all 0.3s ease;
}

.navbar-pit.scrolled .logo-pit {
  height: 50px;
}

/* LINKS */
.navbar-pit .nav-link {
  color: #1f3c5c;
  font-weight: 500;
  position: relative;
}

.navbar-pit .nav-link:hover {
  color: #6c8f3d;
}