/* Animacion entrada */
.italy-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.bar {
  width: 100%;
  height: 33.333vh;
  position: relative;
  animation: slideLeft 1.2s ease forwards;
}

/* Colores */
.green { background: #009246; animation-delay: 0s; }
.white { background: #ffffff; animation-delay: 0.2s; }
.red { background: #ce2b37; animation-delay: 0.4s; }

/* Animacion deslizar */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  }
}

/* Ocultar barras */
.italy-loader {
  animation: hideLoader 1.8s forwards;
}

@keyframes hideLoader {
  0%, 90% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* Boton WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: white;
  color: white;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* Boton menues */
.pdf-download {
  display: inline-block;
  padding: 12px 20px;          /* Tamaño */
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  color: white;                 /* Texto blanco */
  background-color: black;      /* Fondo negro */
  text-decoration: none;        /* Sin subrayado */
  border: 2px solid white;      /* Borde blanco */
  border-radius: 0;             /* Rectangulo */
  text-align: center;
  transition: all 0.3s ease;    /* Efecto al resaltar */
  -webkit-text-stroke: 1px white; /* White outline on text */
}

/* Efecto al resaltar */
.pdf-download:hover {
  color: black;               /* Texto rojo */
  background-color: #ce2b37;    /* Fondo rojo */
  border-color: #ce2b37;        /* Borde rojo */
  -webkit-text-stroke: 1px #ce2b37; 

	/* Fondo en rojo */
}

body {
    background-color: #000000;
}