.pcd {
  color: red;
}

/* Asegura que el iframe ocupa todo el área disponible */
.panel-iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* Animación sutil de entrada */
.panel-wrapper {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.elementor-shortcode p {
  color: rgb(216, 216, 216) !important;
}

#demotext {
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  color: white;
  padding: 10px;
  font-size: 30px;
  font-weight: 500;
  padding-left: 30px;
}

body {
  padding-top: 20px;
  transition: padding-top 0.3s ease;
}

.floating-nav {
  position: fixed;
  top: -100px;
  /* Oculto inicialmente */
  left: 0;
  right: 0;
  z-index: 1030;
  transition: top 0.4s ease;
}

.floating-nav.show {
  top: 0;
}

.toggle-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1040;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #343a40;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.toggle-nav:hover {
  background-color: #495057;
  transform: scale(1.1);
}

.toggle-nav i {
  transition: transform 0.3s ease;
}

.toggle-nav.rotated i {
  transform: rotate(180deg);
}

/* Ajuste para cuando el navbar está visible */
body.nav-visible {
  padding-top: 80px;
}