/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.cuerpo{
    font-family: Arial, sans-serif;
    background-color: #F4F4F4;
    color: #333333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    text-align: justify;
}
body {
    font-family: Arial, sans-serif;
    background-color: #F4F4F4;
    color: #333333;
}
.encabezado {
    background-color: #ad70d3;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.titulo_principal {
    font-size: 2.5em;
    font-weight:800;
    margin:10px;
    color: #FFFFFF;
}
.subtitulo {
    font-size: 1em;
    color: #FFFFFF;
    margin-bottom: 10px;
}
/* Estilos de la sección */
.section {
    max-width: 1400px;
    margin: 30px auto;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: outset #6A1B9A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #6A1B9A; /* Morado principal */
    border-left: 5px solid #FF4081; /* Rosa claro */
}

.section h2 {
    color: #4B0082; /* Morado principal */
    text-align: center;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: bold;
}

.section h3 {
    color: #8E2AAA; /* Azul suave */
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.section p {
    color: #333333; /* Gris oscuro */
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1em;
}

.section .highlight {
    color: #FF4081; /* Rosa claro */
    font-weight: bold;
}

.section ul {
    list-style-type: disc;
    margin: 15px 0 15px 20px;
    color: #333333; /* Gris oscuro */
}

.section ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Estilos para los enlaces y botones */
.section a, .section button {
    color: #FF4081; /* Rosa claro */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.section a:hover, .section button:hover {
    color: #8E2AAA; /* Azul suave */
}

/* Responsive design */
@media (max-width: 768px){
    .titulo_principal{
        margin-left: 70px;
    }
    .subtitulo{
        margin-left: 70px;
        text-align: center;
    }
    .section {
        width: 75%;
        padding: 20px;
        margin-left: 75px;
        text-align: initial;
    }
    .section img{
        height: 100px;
        width: 200px;
    }
    .aside, .aside.active{
        height: 200vh;
    }
    .section h2 {
        font-size: 1.6em;
    }

    .section p, .section ul li {
        font-size: 1em;
    }
    .pie_de_pagina p{
        margin-left: 70px ;
    }
}
.pie_de_pagina {
    background-color: #333333;
    color: #FFFFFF;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}

.texto_pie_de_pagina {
    margin: 0;
}
