.HeaderMain {
  padding: 0px 20px;
}
.marquesina {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquesina h2 {
    display: inline-block;
    animation: desplazarTexto 10s linear infinite;
    margin: 0;
    padding: 0;
    width: 100%;
    padding:10px;
}

@keyframes desplazarTexto {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.TarjetaID {
  display: flex;
  flex-direction: row;
  border: 3px solid #43314e;
  margin: 15px;
  gap: 15px;
  border-radius:5px;
  padding: 10px;
  align-items: stretch;
  height: auto; 
  min-height: 240px;
  background-color: var(--fondo-tarjeta);
  flex-wrap: wrap;
}

.TarjetaID img {
  height: auto;
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border: 3px solid var(--fondo-pagina);
  display: block;
  flex-shrink: 0;
}

.TarjetaIDInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 1;
  min-width: 200px;
}

.TarjetaIDInfo p {
  margin: 2px;
  font-family: 'Mono';
  font-size: 15px;
  overflow-wrap: break-word;
}
.SeparadorImagen {
    display: block;
    width: 95%;
    max-width: 95%;
    height: auto;
    margin: 10px auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}


.ImagenFinal {
  display: block;
  margin: 15px 15px;
  max-width: calc(100% - 30px);
  height: auto;
}

.StickerEsquina {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: auto;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.StickerEsquina:hover {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
  .TarjetaID {
    flex-direction: column;
    height: auto;
    align-items: center;
    text-align: center;
  }
  
  .TarjetaID img {
    max-height: 200px;
  }
}
@media (max-width: 768px) {
    .SeparadorImagen {
        width: 300px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .SeparadorImagen {
        width: 250px;
        margin: 25px auto;
    }
}