/* Estilo general */
body {
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

.info-seccion {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    padding-top: 150px;
    background-color: #ffffff;
}

.info-contenido {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Caja de texto */
.text-box {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #f0f4f8;
}

.text-box h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
	text-align: justify;
}
.text-box ul li:before {
	content: "▷";
	color:rgb(9, 146, 224);
	padding-right: 5px;
	font-size: 16px;
}
.text-box ul li {
	color: #2c3e50;
	font-size: 16px;
}

.button-grupos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button-grupos button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-grupos button:hover {
    background-color: #2980b9;
}

/* Imagen */
.image-box {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-box img {
    max-width: 100%;
    border-radius: 12px;
}

/* Responsividad */
@media (max-width: 768px) {
    .info-contenido {
        flex-direction: column-reverse;
    }

    .text-box, .image-box {
        padding: 20px;
    }

    .button-grupos {
        flex-direction: column;
    }
}
