/* Reset CSS */
/* Establece márgenes y rellenos a 0, borra estilos predeterminados de listas, etc. */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Hace que las fuentes sean más predecibles y legibles */
html,
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

/* Evita que las imágenes se comporten de manera extraña */
img {
  max-width: 100%;
  height: auto;
}

/* Establece una base para estilos de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* Fecha y hora */
#fecha-hora {
  justify-content: space-between;
  margin-bottom: -15.7px;
  background-color: black;
  border-bottom: 0.2rem solid #007fff;
  flex-direction: row;
  height: 33px;
  bottom: 25px;
  width: 100vw;
  display: flex;
}

#fecha-hora p {
  color: white;
  margin: 0 15px;
  max-width: 1200px;
  width: 95%;
}

#hora {
  text-align: left;
}

#fecha {

  white-space: nowrap;
  /* Evita que la fecha se divida en varias líneas */
  text-align: right;
  margin-right: 10px;


}


/* Texto móvil */
.textomovil {
  color: white;
  position: relative;
  top: -5px; /* Ajusta según sea necesario */
  text-align: center;
}

#texto-movil-2 {
  white-space: nowrap;
  overflow: hidden;
  width: 100vw;
  animation: deslizar 20s linear infinite;
  position: relative;
  color: #FFFFFF;
  z-index: 1;
  top: -0.7px;
}

/* Animación de deslizamiento */
@keyframes deslizar {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Noticias */
#noticias {
  margin: 0;
  position: relative;
  background: linear-gradient(to right, rgb(255, 115, 0) 60%, transparent 100%);
  display: inline;
  z-index: 2;
  font-size: 0.8rem !important;
  white-space: nowrap !important;
  font-weight: bold;
  top: 3px;
}

/* Texto movible */
.textomovible {
  font-size: 0.8rem;
  margin-bottom: -12px;
  
}
.contenido{
  top: 3px!important;
}