/**
 * Estilos para Mi Custom Elementor Plugin
 */

.mi-custom-widget {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.mi-widget-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: bold;
}

.mi-widget-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .mi-widget-title {
        font-size: 20px;
    }
    
    .mi-widget-description {
        font-size: 14px;
    }
}

