body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

.encabezado {
    background: #000000;
    padding: 25px 0;
    text-align: center;
}
.caja-titulo {
    background: #27c17a;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 8px;
}

.titulo-principal {
    margin: 0;
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.contenedor-general {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.columna-izquierda, 
.columna-derecha {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.columna-izquierda {
    width: 30%;
    margin-right: 20px;
}

.columna-derecha {
    width: 55%;
}

.caja-definicion, .caja-galeria {
    border: 2px solid #ddd;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
}

.titulo-seccion {
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.texto-definicion {
    margin-top: 10px;
}

.lista-numerada {
    margin-top: 15px;
}

.lista-puntos {
    margin-left: 20px;
}

.caja-galeria {
    background: #ffffff;
}

.subtitulo {
    text-align: center;
    margin: 0;
    font-size: 14px;
}

.sector {
    margin-top: 20px;
}

.titulo-categoria {
    text-align: center;
    margin-bottom: 10px;
}

.fila-imagenes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.imagen {
    width: 150px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 5px;
}

.pie {
    text-align: center;
    background: black;
    color: white;
    padding: 10px;
    margin-top: 20px;
}