.contenido-detalle {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contenido-detalle img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contenido-detalle h2 {
    color: #333;
    margin-bottom: 10px;
}

.contenido-detalle p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.contenido-detalle ul {
    list-style-type: none;
    padding: 0;

.info-box {
    border: 1px solid #ddd;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-box img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.diagram-box {
    background-color: #e0f2f7; /* Color de fondo para diagramas */
}

.tech-box {
    background-color: #e8f5e9; /* Color de fondo para tecnología */
}

.funcionalidades-box {
    background-color: #fff3e0; /* Color de fondo para funcionalidades */
}