body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e0f7fa; /* celeste claro */
}

.menu {
    background-color: #00bcd4; /* celeste más fuerte para el menú */
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
    text-align: center;
    cursor: pointer;
    color: white;
    transition: transform 0.2s, background-color 0.2s;
    border-radius: 10px;
    padding: 5px 10px;
}

.menu li:hover {
    background-color: #26c6da;
    transform: scale(1.05);
}

.menu img {
    width: 24px;  /* Icono más pequeño */
    height: 24px;
    display: block;
    margin: 0 auto 5px;
}

.menu span {
    display: block;
    font-size: 12px;
    color: white;
}

.contenido {
    padding: 20px;
    text-align: center;
.historia {
    max-width: 800px;              /* limita el ancho del bloque */
    margin: 40px auto;             /* centra horizontal y separa vertical */
    padding: 30px;
    background-color: #ffffffdd;   /* fondo blanco semi-transparente */
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}

.historia h1, .historia h2 {
    text-align: center;
    color: #007c91;
    margin-top: 20px;
    margin-bottom: 15px;
}

.historia p {
    margin-bottom: 15px;
}

.historia ul.documentos {
    padding: 0;
    list-style: none;
    text-align: center;
}

.historia ul.documentos li {
    margin: 8px 0;
}

.historia ul.documentos a {
    text-decoration: none;
    color: #00796b;
    font-weight: bold;
    transition: color 0.3s;
}

.historia ul.documentos a:hover {
    color: #004d40;
    text-decoration: underline;
}

.documentos {
    list-style: none;
    padding-left: 0;
}

.documentos li {
    margin: 5px 0;
}

.documentos a {
    text-decoration: none;
    color: #00796b;
    font-weight: bold;
}

.documentos a:hover {
    text-decoration: underline;
}
.cursos {
    width: 100%;
    max-width: 1000px;
    margin: 40px 0 40px 30px; /* margen solo a la izquierda */
    padding: 30px;
    background-color: #ffffffee;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.cursos h1, .cursos h2, .cursos h3 {
    color: #007c91;
    margin-bottom: 20px;
    text-align: left; /* aseguramos alineación izquierda */
}

.cursos ul {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.cursos ul.cronograma {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.cursos ul.cronograma li {
    background: #e0f7fa;
    margin: 8px 0;
    padding: 10px;
    border-left: 5px solid #00acc1;
    border-radius: 4px;
}
.video-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.video-container video {
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.imagen-actividades {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}