@font-face {
    font-family: "conthrax-sb";
    src: url("../Fonts/conthrax-sb.ttf");
}@font-face {
    font-family: "SophosSans-Regular";
    src: url("../Fonts/SophosSans-Regular.ttf");
}

h2{
	font-family: "conthrax-sb";
}

.diagnostico {
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,91,200,1) 50%, rgba(2,0,36,1) 100%);
}


.bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }

.verdeok{
	color: limegreen;
	font-weight: 500;
}

.rojook{
	color: darkred;
	font-weight: 500;
}

.naranjaok{
	color: orange;
	font-weight: 500;
}

.amarillook{
	color: yellow;
	font-weight: 500;
	text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.5); /* Sombra más difusa y lejana */
}

.blancook{
	color: white;
}

.fucsia{
	color: fuchsia;
}

.fondoblanco{
	background-color: white;
}

.asterisco{
	color: darkorange;
}

.conthrax{
	font-family: "conthrax-sb";
}

.sophos{
	font-family: "SophosSans-Regular";
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes resplandor {
  0%, 100% {
    filter: brightness(100%);
    opacity: 0.5;
  }
  50% {
    filter: brightness(150%);
    opacity: 1;
  }
}

.subtitulo-resplandeciente {
  animation: resplandor 3s ease-in-out infinite;
  color: white; /* Asegúrate de que el color del texto contrasta bien con el fondo */
}


.titulo-animado {
  animation: 0.5s ease-out 0s 1 slideInFromLeft;
}

.subtitulo-animado {
  animation: 0.5s ease-out 0.5s 1 slideInFromLeft;
}

input:focus {
  transform: scale(1.02);
  transition: transform 0.3s ease, border 0.3s ease;
  border-color: #0056b3;
}

button.btn-warning:hover {
  background-color: darkorange;  /* Cambia al color que prefieras */
  color: black;
  border-color: black;
  transform: scale(1.03);
  transition: background-color 0.3s, transform 0.3s;
}
s
button:active {
  transform: scale(0.95);
}

.resplandor2 {
  position: fixed;
  width: 100px;  /* Tamaño del resplandor */
  height: 100px; /* Tamaño del resplandor */
  background-color: rgba(255, 255, 255, 0.5); /* Color del resplandor */
  border-radius: 50%; /* Hace el div completamente circular */
  box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.75); /* Brillo exterior */
  animation: pulsar 2s infinite;
}

@keyframes pulsar {
  0%, 100% {
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);
    width: 100px;
    height: 100px;
  }
  50% {
    box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.8);
    width: 120px;
    height: 120px;
  }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.imagen-perro {
    max-width: 100px; /* Ajusta esto según el tamaño deseado */
    height: auto; /* Mantiene la relación de aspecto de la imagen */
    flex: 0 0 auto; /* No permite que la imagen crezca o se encoja */
	animation: pulse 3s infinite ease-in-out;
}

.aura {
    display: inline-block;
    background-image: linear-gradient(to right, yellow, red);
    border-radius: 50%; /* Hacer el fondo circular */
    padding: 10px; /* Espacio para el aura */
    /*filter: blur(0,5px); /* Desenfoque suave */
}

.contenedor-imagen {
    position: relative;
    display: inline-block;
}

.mensaje {
    position: absolute;
    bottom: 100%; /* Coloca el mensaje encima de la imagen */
    left: 50%; /* Centra el mensaje */
    transform: translateX(-50%);
    white-space: nowrap;
    background-color: darkmagenta;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.contenedor-imagen:hover .mensaje {
    display: block;
    opacity: 1;
}


footer {
    background-image: linear-gradient(180deg, #000000, #333333);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%; /* Asegura que el footer ocupe todo el ancho */
    box-sizing: border-box; /* Incluye el padding en el cálculo del ancho */
}

