 
 .graficos-container {
            display: flex;
            justify-content: space-between;
            align-items: center; /* Centra verticalmente los gráficos */
            padding: 0 10.61803398875%; 
        }
        .grafico {
            flex: 1; /* Toma igual espacio en el contenedor */
            max-width: 10%; /* Evita que los gráficos se hagan demasiado grandes */ 
            text-align: center;
        }
			.botontex {
			    background-color: #900000;
			    padding: 15px 30px; /* Ajusta el espaciado del botón */
			    border-radius: 25px;
			    display: inline-block;
			    color: white;
			    font-size: 16px;
			    text-align: center;
			    text-decoration: none; /* Elimina el subrayado del enlace */
			}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
/* Ruta de tu imagen de fondo */
	 background-image: url('../img/fondo-derecha.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    display: flex;
/*    background-image: url('../img/fondo-derecha.jpg');  */ 
    background-size: cover;
    background-repeat: no-repeat;
 /*   background-color: #900000; */
}

.left-section {
    width: 20%;
    background-color: #900000;
    color: white;
    padding: 20px;
}

.right-section {
    width: 80%;
    background-image: url('fondo-derecha.jpg'); /* Ruta de tu imagen de fondo */

    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 20px;
}

.menu {
    width: 80%;
    padding:10x;
    color: white;
}

.menu .logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center; /* Centra el texto del logo */
    line-height: 2; /* Ajusta el espaciado entre las letras */
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu ul li {
    margin-bottom: 10px;
    text-align: center;
    line-height: 2; /* Ajusta el espaciado entre las opciones del menú */

}

.menu ul li a {
    color: white;
    text-decoration: none;
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
}

.content {
    width: 80%;
    padding: 30px;
}

.section {
    background-color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.section h2 {
    color: green;
}

.section img {
    float: right;
    margin-left: 20px;
}

.section a {
    color: green;
    text-decoration: none;
}

.section a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .menu .logo,
    .menu ul li {
        text-align: center;
        margin-bottom: 15px;
    }
}


