
/*************************************************************************************/
/*ESTILOS GLOBALES Y COMUNES A TODAS LAS VENTANAS*/


/*************************************************************************************/
/*BODY*/
body {
    font-family: Arial, sans-serif;
    margin: 0;            
}

/*************************************************************************************/
/*TODO LO RELACIONADO CON LA IMAGEN DEL HEADER*/
.banner {
    background-image: url('../imagenes/Cabecera01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
}

/*************************************************************************************/
/*TODO LO RELACIONADO CON EL MENÚ DE NAVEGACIÓN*/
.navegacion {
    background-color: #0d1b2a; /* Oscuro elegante */
    padding: 1rem 0;
    text-align: center;
}

.navegacion h1 {
    font-size: 2.5rem;
    color: #00d1d1; /* Turquesa brillante */
    margin-bottom: 40px;
}

.navegacion nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-superior {
    margin-bottom: 12px;
}

.navegacion nav ul li a {
    color: #ff6600;
    text-decoration: none;
    padding: 8px;
    transition: color 0.3s;
}

.navegacion nav ul li a.activo {
    color: #00d1d1;
}

.navegacion nav ul li a:hover {
    color: #ffffff;
}

/*************************************************************************************/
/*TODO LO RELACIONADO CON EL TÍTULO*/
h1 {
    font-size: 3rem;
    color: black; /* Turquesa brillante */
    margin-bottom: 20px;
    text-align: center;
}

/*************************************************************************************/
/*TODO LO RELACIONADO CON EL BOTÓN*/
#reiniciar-progreso {

    background-color: #b33939;
    color: white;

    border: none;
    padding: 8px 12px;

    border-radius: 6px;

    cursor: pointer;

    margin-bottom: 15px;

    transition: background-color 0.3s;
}

#reiniciar-progreso:hover {

    background-color: #8e2b2b;
}

/*************************************************************************************/
/*TODO LO RELACIONADO CON FOOTER*/
.footer {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  height: 200px;
}

.footer-contenido {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #00d1d1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-autor {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}
